/* =========================================================
   病みかわ♡センセーション — Global Styles
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700;900&family=DM+Serif+Display:ital@1&display=swap');

/* ── Variables ── */
:root {
  --pink:    #ff4fa3;
  --hot:     #ff007f;
  --accent:  #c400ff;
  --dark:    #0a0008;
  --deep:    #120010;
  --mid:     #1e001c;
  --surface: rgba(255,79,163,.06);
  --border:  rgba(255,79,163,.15);
  --text:    #fce4ff;
  --muted:   rgba(252,228,255,.5);
  --gold:    #f5c6e0;
  --radius:  16px;
  --container: 1100px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ── Skip link ── */
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  left: 16px; top: 16px;
  width: auto; height: auto;
  background: var(--pink);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  z-index: 9999;
}

/* ── Custom cursor ── */
.cursor {
  position: fixed;
  width: 16px; height: 16px;
  background: radial-gradient(circle, #ff4fa3, #c400ff);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .15s, height .15s;
  mix-blend-mode: screen;
  box-shadow: 0 0 10px #ff4fa3, 0 0 24px #c400ff;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,79,163,.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .2s ease;
}
.cursor--hover { width: 28px; height: 28px; }

/* ── Glitter canvas ── */
#glitter-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .6;
}

/* ── Grain overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .025;
  pointer-events: none;
  z-index: 2;
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10,0,8,.9), transparent);
  backdrop-filter: blur(8px);
  transition: background .3s;
}
.header[data-scrolled="true"] {
  background: rgba(10,0,8,.92);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand__mark {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 8px #ff4fa3);
  animation: heartbeat 2.5s ease-in-out infinite;
}
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  40% { transform: scale(1.25); }
  60% { transform: scale(.95); }
}
.brand__text { display: flex; flex-direction: column; }
.brand__name {
  font-size: .82rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1.1;
  text-shadow: 0 0 12px rgba(255,79,163,.5);
}
.brand__sub {
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Nav */
.nav { display: flex; align-items: center; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__menu a {
  color: var(--gold);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, #ff4fa3, #c400ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.nav__menu a:hover { color: var(--pink); }
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__hot { color: var(--pink) !important; }

/* Hamburger */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggleIcon,
.nav__toggleIcon::before,
.nav__toggleIcon::after {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s;
  position: relative;
}
.nav__toggleIcon::before,
.nav__toggleIcon::after {
  content: '';
  position: absolute;
}
.nav__toggleIcon::before { top: -6px; }
.nav__toggleIcon::after  { top:  6px; }
.nav__toggleText { display: none; }

@media(max-width: 680px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,0,8,.97);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
  }
  .nav__menu.is-open { display: flex; }
}

/* ── Hero base ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  overflow: hidden;
  z-index: 3;
}

.hero__bg {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(196,0,255,.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 70% 60%, rgba(255,0,127,.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 15%, rgba(255,79,163,.12) 0%, transparent 50%);
  animation: auroraShift 14s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes auroraShift {
  0%   { transform: translate(0,0) rotate(0deg); }
  50%  { transform: translate(2%,4%) rotate(2deg); }
  100% { transform: translate(-2%,-3%) rotate(-1.5deg); }
}

.hero__inner { position: relative; z-index: 1; }
.hero__inner--single { width: 100%; max-width: 780px; }

/* ── Pill badge ── */
.pill {
  display: inline-block;
  border: 1px solid rgba(255,79,163,.4);
  background: rgba(196,0,255,.1);
  color: var(--pink);
  font-size: .7rem;
  letter-spacing: .28em;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(255,79,163,.18);
  animation: pillPulse 3.5s ease-in-out infinite;
}
@keyframes pillPulse {
  0%,100% { box-shadow: 0 0 16px rgba(255,79,163,.18); }
  50%      { box-shadow: 0 0 32px rgba(196,0,255,.35); }
}

/* ── Hero text ── */
.hero__title {
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff 0%, #ffd6f0 30%, #ff4fa3 65%, #c400ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(255,79,163,.4));
  animation: titleGlow 4.5s ease-in-out infinite alternate;
}
@keyframes titleGlow {
  0%   { filter: drop-shadow(0 0 16px rgba(255,79,163,.3)); }
  100% { filter: drop-shadow(0 0 44px rgba(196,0,255,.6)); }
}
.grad {
  background: linear-gradient(135deg, #ff4fa3, #c400ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: rgba(252,228,255,.75);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero__tagline {
  font-size: clamp(.8rem, 1.8vw, 1rem);
  color: var(--pink);
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 44px;
  text-shadow: 0 0 18px rgba(255,79,163,.5);
}
.hero__tagline::before,
.hero__tagline::after {
  content: '✦';
  margin: 0 12px;
  color: var(--accent);
  display: inline-block;
  animation: spinStar 7s linear infinite;
}
@keyframes spinStar { to { transform: rotate(360deg); } }

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.hero__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .08em;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  cursor: none;
  border: none;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::before { opacity: 1; }
.btn:not(.btn--ghost):not(.btn--mini) {
  background: linear-gradient(135deg, var(--hot), var(--accent));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,0,127,.35), 0 0 0 1px rgba(255,79,163,.25);
}
.btn:not(.btn--ghost):not(.btn--mini):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255,0,127,.55), 0 0 0 1px rgba(255,79,163,.45);
}
.btn--ghost {
  border: 1.5px solid rgba(255,79,163,.5);
  color: var(--pink);
  background: rgba(255,79,163,.06);
}
.btn--ghost:hover {
  border-color: var(--pink);
  background: rgba(255,79,163,.14);
  transform: translateY(-2px);
}
.btn--mini {
  padding: 7px 18px;
  font-size: .75rem;
  background: linear-gradient(135deg, var(--hot), var(--accent));
  color: #fff;
  box-shadow: 0 2px 12px rgba(255,0,127,.3);
}

/* ── Chips ── */
.metaChip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .73rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,79,163,.04);
}
.metaChip a { color: var(--pink); text-decoration: none; }
.metaChip a:hover { text-decoration: underline; }

/* ── Section ── */
.section {
  position: relative;
  z-index: 3;
  padding: 96px 0;
}
.section--alt {
  background: linear-gradient(to bottom,
    transparent,
    rgba(196,0,255,.04) 30%,
    rgba(196,0,255,.04) 70%,
    transparent
  );
  border-top: 1px solid rgba(255,79,163,.07);
  border-bottom: 1px solid rgba(255,79,163,.07);
}

.section__head {
  text-align: center;
  margin-bottom: 56px;
}
.section__head h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #ffd6f0 40%, #ff4fa3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}
.section__head p {
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Cards ── */
.card {
  background: linear-gradient(135deg, rgba(196,0,255,.06), rgba(255,0,127,.03));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, #ff4fa3, #c400ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.card:hover {
  border-color: rgba(255,79,163,.35);
  box-shadow: 0 16px 48px rgba(196,0,255,.18);
  transform: translateY(-4px);
}
.card:hover::before { transform: scaleX(1); }
.card--gradient {
  background: linear-gradient(145deg, rgba(255,0,127,.1), rgba(196,0,255,.12));
  border-color: rgba(255,79,163,.25);
}

/* ── Grid ── */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media(max-width: 800px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 560px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
}

/* ── Typography utils ── */
.h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .03em;
}
.muted { color: var(--muted); font-size: .88rem; line-height: 1.75; }
.link { color: var(--pink); text-decoration: none; transition: opacity .2s; }
.link:hover { opacity: .75; text-decoration: underline; }
.link--big { font-size: 1.1rem; font-weight: 700; }

/* ── DL ── */
.dl { display: flex; flex-direction: column; gap: 12px; }
.dl > div { display: flex; gap: 16px; align-items: baseline; }
.dl dt {
  min-width: 64px;
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--muted);
  text-transform: uppercase;
  flex-shrink: 0;
}
.dl dd { font-size: .9rem; color: rgba(252,228,255,.85); }
.dl dd a { color: var(--pink); text-decoration: none; }
.dl dd a:hover { text-decoration: underline; }

/* ── Bullets ── */
.bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.bullets li {
  font-size: .88rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.bullets li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: .6rem;
  top: 4px;
}

/* ── Apply box ── */
.applyBox {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding: 20px;
  background: rgba(255,79,163,.04);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.applyBox__label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}
.applyBox__value { font-size: .95rem; }

/* ── Flow ── */
.flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-bottom: 40px;
}
.flow::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #ff4fa3, rgba(196,0,255,.3));
}
.flow__item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}
.flow__num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hot), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 20px rgba(255,0,127,.3);
  position: relative;
  z-index: 1;
}
.flow__body { padding-top: 14px; }
.flow__body .h3 { margin-bottom: 6px; }

/* ── CTA row ── */
.ctaRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(196,0,255,.08), rgba(255,0,127,.06));
  border: 1px solid rgba(255,79,163,.2);
  border-radius: 16px;
  flex-wrap: wrap;
}
.ctaRow__title { font-weight: 700; font-size: .95rem; color: #fff; margin-bottom: 4px; }

/* ── Mini links ── */
.miniLinks {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* ── Member cards ── */
.memberCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  background: linear-gradient(160deg, rgba(196,0,255,.06), rgba(255,0,127,.03));
}
.memberCard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent 60%);
  pointer-events: none;
}
.memberCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(196,0,255,.22);
}
.memberCard--pink  { border-color: rgba(255,105,180,.3); }
.memberCard--black { border-color: rgba(80,0,80,.5); }
.memberCard--white { border-color: rgba(255,255,255,.2); }
.memberCard--red   { border-color: rgba(180,0,0,.4); }
.memberCard--purple{ border-color: rgba(100,0,180,.4); }
.memberCard--recruit {
  border: 2px dashed rgba(255,79,163,.3);
  background: transparent;
}

.memberCard--pink:hover   { border-color: rgba(255,105,180,.6); }
.memberCard--black:hover  { border-color: rgba(100,0,100,.8); }
.memberCard--white:hover  { border-color: rgba(255,255,255,.4); }
.memberCard--red:hover    { border-color: rgba(220,0,0,.6); }
.memberCard--purple:hover { border-color: rgba(140,0,220,.6); }
.memberCard--recruit:hover{ border-color: rgba(255,79,163,.6); }

.memberCard__sil {
  width: 90px; height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.sil { width: 100%; height: 100%; }

.memberCard--pink  .sil { color: rgba(255,180,210,.7); }
.memberCard--black .sil { color: rgba(120,60,120,.8); }
.memberCard--white .sil { color: rgba(220,220,230,.7); }
.memberCard--red   .sil { color: rgba(180,30,30,.8); }
.memberCard--purple .sil { color: rgba(100,0,180,.8); }

.memberCard__name {
  font-size: .98rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.memberCard__meta {
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.memberCard__copy {
  font-size: .82rem;
  color: var(--gold);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.recruitPlus {
  font-size: 3rem;
  color: rgba(255,79,163,.5);
  line-height: 1;
}

/* ── Member hero card ── */
.memberHero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  min-height: 320px;
}
.memberHero__sil {
  width: 140px; height: 240px;
  margin-bottom: 20px;
}
.sil--pose { width: 100%; height: 100%; }

.memberHero--pink   .sil--pose { color: rgba(255,180,210,.75); }
.memberHero--black  .sil--pose { color: rgba(120,60,120,.85); }
.memberHero--white  .sil--pose { color: rgba(220,220,230,.75); }
.memberHero--red    .sil--pose { color: rgba(180,30,30,.85); }
.memberHero--purple .sil--pose { color: rgba(100,0,180,.85); }

.memberHero__quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.6;
  max-width: 240px;
}

/* ── Orb ── */
.orb {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 35% 35%,
    rgba(255,79,163,.6) 0%,
    rgba(196,0,255,.4) 40%,
    rgba(10,0,8,.8) 70%
  );
  box-shadow: 0 0 60px rgba(255,0,127,.28), 0 0 120px rgba(196,0,255,.18);
  animation: orbFloat 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  filter: drop-shadow(0 0 16px #ff4fa3);
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,79,163,.1);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footerBrand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.footerBrand__mark { font-size: 1rem; }
.footerBrand__text {
  font-size: .88rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff4fa3, #c400ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer__small {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .1em;
}

/* ── Petals ── */
.petal {
  position: absolute;
  animation: petalFall linear infinite;
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
@keyframes petalFall {
  0%   { transform: translateY(-60px) rotate(0deg); opacity: .65; }
  100% { transform: translateY(105vh) rotate(400deg); opacity: 0; }
}

/* ── Divider ── */
.divider-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,79,163,.3), transparent);
}
.divider-star { color: var(--pink); font-size: .72rem; }

/* ── Keyword chips ── */
.keyword-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.keyword {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.keyword-1 { background: rgba(255,0,127,.14); border: 1px solid rgba(255,0,127,.35); color: #ff8ccf; }
.keyword-2 { background: rgba(196,0,255,.14); border: 1px solid rgba(196,0,255,.35); color: #e57fff; }
.keyword-3 { background: rgba(255,79,163,.1);  border: 1px solid rgba(255,79,163,.28); color: #ffbce0; }
.keyword-4 { background: rgba(255,220,240,.06); border: 1px solid rgba(255,220,240,.18); color: rgba(255,220,240,.8); }

/* ── About layout ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media(max-width: 700px) { .about-grid { grid-template-columns: 1fr; } }
.about-visual { display: flex; justify-content: center; }

/* ── Projects ── */
.project-card {
  padding: 36px 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(196,0,255,.05), rgba(255,0,127,.03));
  text-align: center;
  transition: all .3s;
}
.project-card:hover {
  border-color: rgba(255,79,163,.35);
  box-shadow: 0 20px 56px rgba(196,0,255,.18);
  transform: translateY(-6px);
}
.project-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255,79,163,.5));
}
.project-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.project-card p { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ── Company box ── */
.company-box {
  background: linear-gradient(135deg, rgba(196,0,255,.07), rgba(255,0,127,.04));
  border: 1px solid rgba(255,79,163,.2);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.company-box h3 {
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
@media(max-width:700px) {
  .company-box { grid-template-columns: 1fr; padding: 28px; }
}

/* ── Petal hero ── */
.hero--index .hero__tagline { margin-top: 4px; }
