:root{
  --bg:#07070a;
  --panel:#0f1117d9;
  --panel-strong:#0a0b10f2;
  --line:#ffffff1a;
  --text:#f5f1ea;
  --muted:#f5f1e0b3;
  --accent:#ff6d1f;
  --accent-2:#d84d09;
  --gold:#ffcb8d;
  --shadow:0 28px 70px rgba(0,0,0,.42);
  --max:1180px;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  scroll-snap-type:y proximity;
  scroll-padding-top:72px;
}
body{
  margin:0;
  background:
    radial-gradient(circle at top right,rgba(255,109,31,.18),transparent 22%),
    radial-gradient(circle at bottom left,rgba(255,203,141,.08),transparent 26%),
    var(--bg);
  color:var(--text);
  font-family:"Segoe UI",Tahoma,Arial,sans-serif;
}

a{color:inherit;text-decoration:none}
img,video,iframe{max-width:100%}

.shell{
  width:min(var(--max),calc(100% - 28px));
  margin:0 auto;
}

.site-header{
  position:fixed;
  inset:0 0 auto;
  z-index:20;
  padding:14px 0;
  background:linear-gradient(180deg,rgba(7,7,10,.88),rgba(7,7,10,0));
  backdrop-filter:blur(10px);
}

.site-header .shell,
.header-actions,
.hero-actions,
.hero-tags,
.scene-actions,
.search-row,
.lang-links,
.link-cloud{
  display:flex;
  align-items:center;
  gap:12px;
}

.site-header .shell{justify-content:space-between}

.brand{
  display:grid;
  gap:4px;
}

.brand-mark,
h1,h2,
.footer-brand strong{
  font-family:"Iowan Old Style",Georgia,serif;
  letter-spacing:-.03em;
}

.brand-mark{
  font-size:1.55rem;
  font-style:italic;
  font-weight:700;
}

.brand-note,
.eyebrow{
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.brand-note{color:var(--muted)}
.eyebrow{
  margin:0 0 12px;
  color:var(--gold);
}

.button,
.button-ghost,
.tag,
.link-cloud a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid transparent;
  transition:transform .2s ease,opacity .2s ease,border-color .2s ease;
}

.button:hover,
.button-ghost:hover,
.tag:hover,
.link-cloud a:hover{
  transform:translateY(-2px);
}

.button{
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
  color:#fff;
  font-weight:700;
  box-shadow:0 16px 34px rgba(255,109,31,.28);
}

.button-ghost,
.tag,
.link-cloud a{
  border-color:var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
}

main{
  overflow:hidden;
  display:grid;
  gap:0;
}

.scene{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  isolation:isolate;
  scroll-snap-align:start;
  scroll-snap-stop:always;
}

.scene.short{min-height:100svh}

.scene + .scene{margin-top:0}

.scene-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.scene::before,
.scene::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
}

.scene::before{
  background:linear-gradient(90deg,rgba(0,0,0,.8) 0%,rgba(0,0,0,.48) 42%,rgba(0,0,0,.14) 70%,rgba(0,0,0,.72) 100%);
}

.scene::after{
  background:linear-gradient(180deg,rgba(0,0,0,.5) 0%,rgba(0,0,0,.14) 22%,rgba(0,0,0,.06) 56%,rgba(7,7,10,.58) 76%,rgba(7,7,10,.96) 100%);
}

.scene-shell{
  position:relative;
  z-index:1;
  width:min(var(--max),calc(100% - 28px));
  margin:0 auto;
  min-height:100svh;
  padding:92px 0 40px;
  display:grid;
  align-items:center;
}

.scene-copy,
.live-copy,
.explore-head,
.footer-brand{
  display:grid;
  gap:16px;
}

.scene-copy{max-width:640px}

.hero-chat{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-32%);
  width:min(356px,36vw);
  display:grid;
  gap:10px;
  pointer-events:none;
  z-index:2;
}

.hero-hearts{
  position:absolute;
  right:56px;
  top:56%;
  width:280px;
  height:210px;
  transform:translateY(-26%);
  pointer-events:none;
  z-index:1;
  opacity:.96;
}

.hero-heart{
  position:absolute;
  color:rgba(255,136,74,.52);
  font-size:1.9rem;
  line-height:1;
  text-shadow:
    0 0 12px rgba(255,109,31,.28),
    0 0 28px rgba(255,109,31,.18),
    0 10px 20px rgba(0,0,0,.26);
  filter:drop-shadow(0 12px 18px rgba(0,0,0,.22));
  animation:heartDrift 9s ease-in-out infinite;
}

.heart-a{left:8px;top:92px;font-size:2rem;animation-delay:0s}
.heart-b{left:68px;top:42px;font-size:1.45rem;animation-delay:-1.8s}
.heart-c{left:144px;top:104px;font-size:2.35rem;animation-delay:-3.4s}
.heart-d{left:202px;top:24px;font-size:1.65rem;animation-delay:-2.2s}
.heart-e{left:228px;top:138px;font-size:1.35rem;animation-delay:-4.1s}

@keyframes heartDrift{
  0%,100%{opacity:.34;transform:translate3d(0,0,0) scale(.94)}
  50%{opacity:.82;transform:translate3d(10px,-18px,0) scale(1.12)}
}

.hero-bubble{
  padding:11px 14px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(8,9,13,.72);
  color:var(--muted);
  font-size:.78rem;
  line-height:1.35;
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
  will-change:transform,opacity;
  opacity:0;
  animation:bubbleCycle 24s linear infinite;
}

.hero-bubble strong{
  color:var(--accent);
  font-weight:700;
}

.hero-bubble:nth-child(2){
  margin-left:42px;
  animation-delay:4s;
}

.hero-bubble:nth-child(3){
  margin-left:18px;
  animation-delay:8s;
}

.hero-bubble:nth-child(4){
  margin-left:72px;
  animation-delay:12s;
}

.hero-bubble:nth-child(5){
  margin-left:28px;
  animation-delay:16s;
}

.hero-bubble:nth-child(6){
  margin-left:88px;
  animation-delay:20s;
}

@keyframes bubbleCycle{
  0%,8%{opacity:0;transform:translate3d(0,18px,0) scale(.94)}
  12%,28%{opacity:1;transform:translate3d(0,0,0) scale(1)}
  34%,100%{opacity:0;transform:translate3d(0,-16px,0) scale(.98)}
}

h1{
  margin:0;
  max-width:9.6ch;
  font-size:clamp(2.15rem,4.4vw,4.15rem);
  line-height:.98;
}

h2{
  margin:0;
  max-width:12ch;
  font-size:clamp(1.45rem,2.5vw,2.2rem);
  line-height:1.04;
}

.lead,
.subtle,
.footer-brand p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.lead{font-size:.94rem;max-width:52ch}
.subtle{font-size:.86rem}

.hero-actions,
.hero-tags,
.scene-actions,
.footer-links,
.lang-links,
.link-cloud{
  flex-wrap:wrap;
}

.search-row{
  width:min(460px,100%);
  min-height:52px;
  padding:0 8px 0 16px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:999px;
  background:rgba(0,0,0,.38);
  box-shadow:var(--shadow);
}

.search-copy{
  flex:1 1 auto;
  color:var(--text);
  opacity:.88;
}

.search-go{
  width:36px;
  height:36px;
  border-radius:50%;
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.live,
.explore{
  position:relative;
  isolation:isolate;
  min-height:auto;
  padding:28px 0 18px;
  display:block;
  scroll-snap-align:none;
}

.live{
  margin-top:0;
  padding:42px 0 32px;
}

.explore{margin-top:0}

.live::before,
.explore::before{
  display:none;
}

.live-card,
.explore-card{
  border:1px solid var(--line);
  border-radius:30px;
  background:linear-gradient(180deg,var(--panel),var(--panel-strong));
  box-shadow:0 18px 40px rgba(0,0,0,.24);
}

.live-card{
  padding:20px;
  display:grid;
  grid-template-columns:minmax(240px,300px) minmax(0,1fr);
  gap:18px;
  align-items:center;
  min-height:auto;
}

.frame-shell{
  padding:12px;
  border:1px solid var(--line);
  border-radius:24px;
  background:rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
}

.frame-shell iframe{
  display:block;
  width:100%;
  max-width:850px;
  aspect-ratio:850 / 480;
  height:auto;
  border:0;
  border-radius:18px;
  background:#000;
}

.explore-card{
  padding:18px 20px;
  display:grid;
  gap:12px;
  min-height:auto;
  align-content:start;
}

.explore-card-minimal{
  max-width:680px;
  margin:0 auto;
}

.explore-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.shortcut-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.explore-jump{
  width:fit-content;
}

.mega-panel{
  border:1px solid var(--line);
  border-radius:22px;
  background:rgba(255,255,255,.035);
  overflow:hidden;
}

.mega-panel > summary{
  padding:16px 18px;
  font-size:.98rem;
}

.mega-panel > .accordion-stack{
  padding:0 12px 12px;
}

.accordion-stack{
  display:grid;
  gap:12px;
}

details{
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,.04);
  overflow:hidden;
}

summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  font-weight:700;
}

summary::-webkit-details-marker{display:none}
summary::after{
  content:"+";
  color:var(--gold);
  font-size:1.2rem;
}

details[open] summary::after{content:"-"}

.link-cloud{
  padding:0 16px 16px;
  border-top:1px solid rgba(255,255,255,.08);
}

.link-cloud a,
.tag{
  min-height:36px;
  padding:0 12px;
  font-size:.88rem;
}

.footer-wrap{
  margin-top:6px;
  padding:16px 0 32px;
  background:none;
}

.footer{
  position:relative;
  padding:0;
  display:grid;
  gap:18px;
}

.footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.1) 12%,rgba(255,255,255,.1) 88%,transparent);
}

.footer-grid{
  padding-top:24px;
  display:grid;
  grid-template-columns:minmax(220px,280px) minmax(0,1fr);
  gap:18px 44px;
  align-items:start;
}

.footer-brand{
  max-width:320px;
  gap:8px;
}

.footer-brand strong{
  font-size:1.12rem;
  font-style:italic;
}

.footer-brand p{
  margin:0;
  color:var(--muted);
  font-size:.9rem;
  line-height:1.5;
}

.footer-columns{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px 24px;
}

.footer-col{
  display:grid;
  gap:10px;
  align-content:start;
}

.footer-col h3{
  margin:0;
  color:var(--text);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.footer-col-links{
  display:grid;
  gap:6px;
}

.footer-col-links a{
  color:var(--muted);
  font-size:.89rem;
  line-height:1.35;
  text-decoration:none;
  transition:color .2s ease,opacity .2s ease;
}

.footer-col-links a:hover{
  color:var(--text);
  opacity:1;
}

.footer-meta{
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px 20px;
  flex-wrap:wrap;
}

.lang-links{
  padding-top:0;
  border-top:0;
  gap:14px;
  flex-wrap:wrap;
}

.lang-links a{
  color:rgba(245,241,234,.68);
  font-size:.84rem;
  line-height:1.25;
  text-decoration:none;
}

.lang-links a.is-active{
  color:var(--text);
}

.lang-links a:hover{
  transform:none;
  color:var(--text);
}

.copy{
  color:rgba(245,241,234,.56);
  font-size:.82rem;
}

@media (max-width:960px){
  .live-card{
    grid-template-columns:1fr;
  }

  .scene,
  .scene.short,
  .live,
  .explore{
    min-height:100svh;
  }

  .live,
  .explore{
    min-height:auto;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .hero-chat{
    position:static;
    transform:none;
    width:min(360px,100%);
    margin-top:12px;
  }

  .hero-hearts{
    right:24px;
    top:58%;
    width:236px;
    height:172px;
  }
}

@media (max-width:760px){
  .site-header{
    padding:10px 0;
  }

  .site-header .shell{
    align-items:center;
    flex-wrap:wrap;
  }

  .header-actions,
  .hero-actions,
  .hero-tags,
  .scene-actions,
  .lang-links{
    display:flex;
    flex-wrap:wrap;
    width:100%;
    gap:8px;
  }

  .header-actions{
    width:auto;
  }

  .scene-shell{
    min-height:100svh;
    padding:80px 0 26px;
  }

  .hero-hearts{
    right:8px;
    top:60%;
    width:202px;
    height:146px;
    opacity:.88;
  }

  .live::before,
  .explore::before{
    height:104px;
  }

  .live-card,
  .explore-card{
    padding:18px;
    border-radius:22px;
  }

  .footer-columns{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px 20px;
  }

  .footer{
    gap:20px;
  }

}

@media (max-width:520px){
  h1{
    max-width:none;
    font-size:clamp(1.8rem,9.2vw,2.7rem);
  }

  h2{
    max-width:none;
    font-size:clamp(1.3rem,6.4vw,1.8rem);
  }

  .lead{font-size:.9rem}
  .subtle{font-size:.82rem}
  .scene,
  .scene.short,
  .scene-shell{
    min-height:100svh;
  }
  .live,
  .explore{
    min-height:auto;
    padding:20px 0 12px;
  }

  .live{
    padding:28px 0 20px;
  }
  .hero-chat,
  .hero-hearts{display:none}
  .button,
  .button-ghost,
  .tag{
    min-height:40px;
  }

  .footer-wrap{
    padding:14px 0 26px;
  }

  .footer-columns{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px 14px;
  }

  .footer-col{
    gap:8px;
  }

  .footer-col-links a{
    font-size:.85rem;
  }

  .footer-meta{
    align-items:flex-start;
  }
}
