:root {
  --bg-1: #f0f9ff;
  --bg-2: #e0f2fe;
  --bg-3: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --muted-soft: #64748b;
  --accent: #0284c7;
  --accent-dark: #0369a1;
  --indigo: #4f46e5;
  --silver: #94a3b8;
  --shadow: 0 22px 60px rgba(2, 132, 199, 0.12);
  --shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.08);
  --radius-lg: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(2, 132, 199, 0.12), transparent 32%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 42%, var(--bg-3) 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: contain; }
button, .button { font: inherit; }
.site-shell { overflow: hidden; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand img { width: 40px; height: 40px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-link {
  color: var(--muted);
  font-size: 0.96rem;
  padding: 10px 16px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: rgba(2, 132, 199, 0.08);
  transform: translateY(-1px);
}

.hero, .page-hero { position: relative; padding: 44px 0 72px; }
.hero-grid, .page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}
.hero-copy, .page-hero-copy, .hero-visual, .page-hero-visual { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(2, 132, 199, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1, .page-hero h1 {
  margin: 18px 0;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.page-hero h1 { font-size: clamp(2.4rem, 4vw, 3.5rem); }
.hero p, .page-hero p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 60ch;
}
.hero-actions, .page-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.cta-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 16px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--indigo) 100%);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 34px rgba(79, 70, 229, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 24px 38px rgba(79, 70, 229, 0.28); }
.cta-button::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -15%;
  width: 34%;
  transform: rotate(18deg) translateX(-180%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: shine 3.4s linear infinite;
}
.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(79, 70, 229, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--indigo);
  font-weight: 700;
}
.hero-visual, .page-hero-visual { min-height: 460px; }
.page-hero-visual { min-height: 380px; }
.hero-panel, .page-hero-panel {
  position: relative;
  height: 100%;
  padding: 28px;
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-screenshot, .page-hero-screenshot {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 404px;
  border-radius: 28px;
  border: 1px solid rgba(2, 132, 199, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(224, 242, 254, 0.72));
  padding: 18px;
}
.page-hero-screenshot { min-height: 320px; }
.hero-screenshot img, .page-hero-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(2, 132, 199, 0.14));
}

.facet, .facet-small {
  position: absolute;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.16), rgba(79, 70, 229, 0.16));
  clip-path: polygon(50% 0%, 100% 30%, 84% 100%, 16% 100%, 0% 30%);
  animation: floatFacet 11s ease-in-out infinite;
}
.facet::before, .facet-small::before {
  content: "";
  position: absolute;
  inset: 7%;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(224, 242, 254, 0.28));
  clip-path: inherit;
}
.facet.one { width: 132px; height: 148px; top: -18px; right: 10px; }
.facet.two { width: 110px; height: 124px; bottom: -8px; left: -18px; animation-delay: -2s; }
.facet-small.one { width: 84px; height: 94px; top: 54px; left: -12px; animation-delay: -5s; }
.facet-small.two { width: 78px; height: 88px; right: 28px; bottom: 54px; animation-delay: -3s; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.stat-chip {
  padding: 14px 14px 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(2, 132, 199, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.stat-chip strong {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 1.15rem;
  color: var(--indigo);
}
.stat-chip span { display: block; margin-top: 5px; color: var(--muted-soft); font-size: 0.88rem; }

.section { padding: 28px 0 72px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.section-head h2 {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
}
.section-head p { margin: 8px 0 0; max-width: 58ch; color: var(--muted); line-height: 1.7; }

.accent-card, .content-card, .feature-card, .review-card, .tip-card, .stage-card, .legal-card, .faq-item, .table-card, .gallery-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.accent-card:hover, .content-card:hover, .feature-card:hover, .review-card:hover, .tip-card:hover, .stage-card:hover, .legal-card:hover, .faq-item:hover, .gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
}
.accent-card { padding: 30px; border-left: 6px solid var(--accent); }
.accent-card p { margin: 0; font-size: 1.08rem; line-height: 1.9; color: var(--muted); }
.grid-4, .grid-3, .grid-2 { display: grid; gap: 22px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-card { padding: 18px; border-top: 4px solid rgba(2, 132, 199, 0.68); }
.gallery-card img { width: 100%; height: 290px; }
.showcase-band {
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(224, 242, 254, 0.72)),
    radial-gradient(circle at 18% 22%, rgba(79, 70, 229, 0.12), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}
.showcase-band .section-head { margin-bottom: 22px; }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 38%, rgba(15, 23, 42, 0.72));
}
.showcase-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.showcase-card:hover img { transform: scale(1.04); }
.showcase-card > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #ffffff;
}
.showcase-card h3 {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
}
.feature-card, .tip-card, .stage-card, .content-card, .legal-card { padding: 24px; border-left: 5px solid rgba(2, 132, 199, 0.7); }
.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.14), rgba(79, 70, 229, 0.12));
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-card h3, .tip-card h3, .stage-card h3, .content-card h3, .legal-card h3, .faq-item h3 {
  margin: 0 0 12px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.32rem;
}
.feature-card p, .tip-card p, .stage-card p, .content-card p, .legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.review-card { padding: 24px; border-top: 4px solid rgba(79, 70, 229, 0.7); }
.review-card strong {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
}
.review-card span { display: inline-block; margin-top: 6px; margin-bottom: 12px; color: #f59e0b; letter-spacing: 0.08em; }
.review-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.cta-band {
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.92), rgba(79, 70, 229, 0.92));
  color: #ffffff;
  box-shadow: var(--shadow);
}
.cta-band-inner { display: grid; grid-template-columns: 1.15fr auto; gap: 24px; align-items: center; }
.cta-band h2 {
  margin: 0 0 10px;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
}
.cta-band p { margin: 0; max-width: 50ch; line-height: 1.8; color: rgba(255, 255, 255, 0.9); }
.play-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.play-badge img { height: 66px; }

.list-checks, .bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.list-checks li, .bullet-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.72;
}
.list-checks li::before, .bullet-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--indigo));
  box-shadow: 0 0 0 5px rgba(2, 132, 199, 0.08);
}
.table-card { overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
th, td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
th {
  background: rgba(224, 242, 254, 0.55);
  font-family: "Quicksand", sans-serif;
  color: var(--accent-dark);
  font-size: 1rem;
}
td { color: var(--muted); line-height: 1.6; vertical-align: top; }

.faq-list { display: grid; gap: 16px; }
.faq-item { padding: 0; overflow: hidden; border-left: 5px solid rgba(79, 70, 229, 0.72); }
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.faq-question span {
  font-family: "Quicksand", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}
.faq-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(2, 132, 199, 0.1);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-answer-inner { padding: 0 24px 24px; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(79, 70, 229, 0.12); }

.two-column-copy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.mini-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.note-band {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(2, 132, 199, 0.15);
  color: var(--muted);
  line-height: 1.75;
  box-shadow: var(--shadow-soft);
}
.stage-media img {
  width: 100%;
  height: 250px;
  border-radius: 18px;
  border: 1px solid rgba(2, 132, 199, 0.14);
  background: rgba(240, 249, 255, 0.7);
}

.site-footer {
  margin-top: 24px;
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 20px 24px;
  text-align: center;
}
.site-footer img.footer-logo { height: 44px; margin: 0 auto 16px; }
.footer-nav {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.footer-nav a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: #ffffff; }
.site-footer p { color: #64748b; margin: 6px 0; }
.footer-badge img { height: 52px; margin: 16px auto 0; }

@keyframes shine {
  from { transform: rotate(18deg) translateX(-180%); }
  to { transform: rotate(18deg) translateX(520%); }
}
@keyframes floatFacet {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -12px, 0) rotate(5deg); }
}

@media (max-width: 960px) {
  .hero-grid, .page-hero-grid, .cta-band-inner, .grid-4, .grid-3, .grid-2, .two-column-copy, .showcase-grid { grid-template-columns: 1fr; }
  .hero-visual, .page-hero-visual { min-height: auto; }
  .hero-stats { grid-template-columns: 1fr; }
  .nav-wrap { align-items: flex-start; flex-direction: column; }
  .nav-menu { justify-content: flex-start; }
}
@media (max-width: 768px) {
  .hero, .page-hero { padding-top: 22px; }
  .hero-panel, .page-hero-panel, .accent-card, .feature-card, .tip-card, .stage-card, .content-card, .review-card, .legal-card, .cta-band, .showcase-band { padding: 22px; }
  .hero-screenshot, .page-hero-screenshot { min-height: 300px; }
  .showcase-card { min-height: 250px; }
  .gallery-card img, .stage-media img { height: 220px; }
  th, td { padding: 14px; }
}
@media (max-width: 480px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .nav-link { padding: 8px 12px; font-size: 0.9rem; }
  .hero h1, .page-hero h1 { font-size: 2.25rem; }
  .hero p, .page-hero p, .accent-card p, .feature-card p, .tip-card p, .stage-card p, .content-card p, .review-card p, .legal-card p, .faq-answer-inner, td { font-size: 0.98rem; }
  .hero-actions, .page-hero-actions { flex-direction: column; align-items: stretch; }
  .cta-button, .secondary-link { width: 100%; }
  .section { padding-bottom: 56px; }
  .play-badge img { height: 56px; }
}
