/* roulang page: index */
:root {
      --color-primary: #111827;
      --color-primary-2: #1f2937;
      --color-accent: #d6a85f;
      --color-accent-dark: #b7863d;
      --color-accent-soft: #fff5df;
      --color-bg: #f7f4ee;
      --color-surface: #ffffff;
      --color-surface-2: #fbfaf7;
      --color-text: #1f2937;
      --color-muted: #667085;
      --color-light: #f3f1ec;
      --color-border: rgba(31, 41, 55, .12);
      --color-border-strong: rgba(31, 41, 55, .22);
      --shadow-soft: 0 18px 50px rgba(17, 24, 39, .08);
      --shadow-card: 0 14px 35px rgba(17, 24, 39, .10);
      --shadow-hover: 0 20px 55px rgba(17, 24, 39, .15);
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --radius-xl: 36px;
      --container: 1180px;
      --nav-height: 76px;
      --ease: cubic-bezier(.2, .8, .2, 1);
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      margin: 0;
      font-family: var(--font-sans);
      color: var(--color-text);
      background:
        radial-gradient(circle at 8% 5%, rgba(214, 168, 95, .18), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(17, 24, 39, .10), transparent 30%),
        linear-gradient(180deg, #fbfaf7 0%, var(--color-bg) 42%, #ffffff 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s var(--ease), background .22s var(--ease), transform .22s var(--ease), opacity .22s var(--ease);
    }

    a:hover,
    a:focus {
      color: var(--color-accent-dark);
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
    }

    input,
    textarea {
      width: 100%;
      outline: none;
      border: 1px solid var(--color-border);
      border-radius: 14px;
      background: rgba(255, 255, 255, .92);
      color: var(--color-text);
      padding: 14px 15px;
      transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
    }

    input::placeholder,
    textarea::placeholder {
      color: #9aa0aa;
    }

    input:focus,
    textarea:focus {
      border-color: rgba(214, 168, 95, .75);
      box-shadow: 0 0 0 4px rgba(214, 168, 95, .16);
      background: #fff;
    }

    ::selection {
      background: rgba(214, 168, 95, .35);
      color: var(--color-primary);
    }

    .container {
      width: min(calc(100% - 32px), var(--container));
      margin-inline: auto;
    }

    .section {
      padding: 92px 0;
      position: relative;
    }

    .section-tight {
      padding: 70px 0;
    }

    .section-heading {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(240px, 430px);
      gap: 34px;
      align-items: end;
      margin-bottom: 34px;
    }

    .section-heading.center-soft {
      grid-template-columns: 1fr;
      max-width: 780px;
      text-align: center;
      margin-inline: auto;
      margin-bottom: 42px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      margin-bottom: 12px;
      padding: 7px 12px;
      border: 1px solid rgba(214, 168, 95, .35);
      border-radius: 999px;
      color: #7d5b27;
      background: rgba(255, 245, 223, .76);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .02em;
    }

    h1,
    h2,
    h3,
    h4,
    p {
      margin-top: 0;
    }

    h1 {
      font-size: clamp(42px, 7vw, 86px);
      line-height: .98;
      letter-spacing: -0.06em;
      color: var(--color-primary);
      margin-bottom: 22px;
      font-weight: 900;
    }

    h2 {
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1.12;
      letter-spacing: -0.04em;
      color: var(--color-primary);
      margin-bottom: 0;
      font-weight: 850;
    }

    h3 {
      font-size: 21px;
      line-height: 1.35;
      color: var(--color-primary);
      margin-bottom: 10px;
      font-weight: 800;
    }

    p {
      color: var(--color-muted);
      margin-bottom: 0;
    }

    .lead {
      font-size: 18px;
      color: #475467;
      line-height: 1.9;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 800;
      line-height: 1;
      border: 1px solid transparent;
      transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
      white-space: nowrap;
      user-select: none;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn:focus-visible,
    .nav-link:focus-visible,
    .icon-pill:focus-visible,
    .mobile-toggle:focus-visible {
      outline: 3px solid rgba(214, 168, 95, .35);
      outline-offset: 3px;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--color-primary), var(--color-primary-2));
      box-shadow: 0 14px 28px rgba(17, 24, 39, .22);
    }

    .btn-primary:hover {
      color: #fff;
      box-shadow: 0 20px 38px rgba(17, 24, 39, .28);
    }

    .btn-accent {
      color: #241a0c;
      background: linear-gradient(135deg, #efd49a, var(--color-accent));
      box-shadow: 0 14px 30px rgba(214, 168, 95, .28);
    }

    .btn-accent:hover {
      color: #111827;
      box-shadow: 0 18px 36px rgba(214, 168, 95, .36);
    }

    .btn-ghost {
      color: var(--color-primary);
      background: rgba(255, 255, 255, .76);
      border-color: var(--color-border);
      backdrop-filter: blur(14px);
    }

    .btn-ghost:hover {
      color: var(--color-primary);
      border-color: rgba(214, 168, 95, .46);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      color: #765624;
      background: var(--color-accent-soft);
      border: 1px solid rgba(214, 168, 95, .25);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(251, 250, 247, .82);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(31, 41, 55, .08);
    }

    .promo-bar {
      background: var(--color-primary);
      color: rgba(255, 255, 255, .88);
      font-size: 13px;
    }

    .promo-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .promo-note {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .promo-note strong {
      color: #fff;
      font-weight: 800;
    }

    .promo-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
    }

    .promo-actions a {
      color: #f2d79c;
      font-weight: 800;
    }

    .main-nav {
      min-height: var(--nav-height);
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 22px;
      align-items: center;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: #2d210f;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, #f4dca4, #c89445);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65), 0 12px 28px rgba(214, 168, 95, .22);
      font-weight: 900;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .brand-name {
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -0.02em;
      color: var(--color-primary);
    }

    .brand-sub {
      font-size: 12px;
      color: var(--color-muted);
      margin-top: 3px;
    }

    .nav-center {
      display: flex;
      align-items: center;
      gap: 18px;
      min-width: 0;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
      margin: 0;
      padding: 0;
      flex-shrink: 0;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      font-weight: 800;
      color: #344054;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--color-primary);
      background: rgba(214, 168, 95, .13);
    }

    .search-box {
      position: relative;
      flex: 1;
      min-width: 180px;
      max-width: 390px;
    }

    .search-box input {
      height: 44px;
      padding: 0 46px 0 42px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .72);
    }

    .search-box .fa-magnifying-glass {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #98a2b3;
      font-size: 14px;
    }

    .search-box button {
      position: absolute;
      right: 6px;
      top: 6px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      color: #fff;
      background: var(--color-primary);
      transition: transform .22s var(--ease), background .22s var(--ease);
    }

    .search-box button:hover {
      transform: scale(1.04);
      background: var(--color-accent-dark);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      justify-self: end;
    }

    .icon-pill {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      color: var(--color-primary);
      background: rgba(255, 255, 255, .72);
      border: 1px solid var(--color-border);
      position: relative;
    }

    .icon-pill:hover {
      color: var(--color-primary);
      border-color: rgba(214, 168, 95, .42);
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
    }

    .icon-pill .dot {
      position: absolute;
      top: 8px;
      right: 9px;
      width: 8px;
      height: 8px;
      background: #ef4444;
      border-radius: 50%;
      border: 2px solid #fff;
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      color: var(--color-primary);
      background: rgba(255, 255, 255, .82);
      border: 1px solid var(--color-border);
    }

    .mobile-drawer {
      display: none;
      border-top: 1px solid var(--color-border);
      padding: 14px 0 18px;
      background: rgba(251, 250, 247, .96);
    }

    .mobile-drawer.open {
      display: block;
      animation: drawerIn .22s var(--ease);
    }

    @keyframes drawerIn {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .mobile-drawer .nav-links {
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
      margin-bottom: 12px;
    }

    .mobile-drawer .nav-link {
      width: 100%;
      justify-content: center;
      background: rgba(255, 255, 255, .7);
    }

    .hero {
      padding: 72px 0 62px;
      overflow: hidden;
    }

    .hero-shell {
      position: relative;
      border-radius: var(--radius-xl);
      padding: clamp(28px, 5vw, 58px);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .62)),
        radial-gradient(circle at 20% 20%, rgba(214, 168, 95, .22), transparent 26%),
        radial-gradient(circle at 80% 0%, rgba(17, 24, 39, .10), transparent 34%);
      border: 1px solid rgba(255, 255, 255, .76);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      isolation: isolate;
    }

    .hero-shell::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(31, 41, 55, .08);
      border-radius: calc(var(--radius-xl) - 10px);
      pointer-events: none;
      z-index: -1;
    }

    .hero-top {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 40px;
      align-items: end;
      margin-bottom: 38px;
    }

    .hero-copy {
      max-width: 720px;
    }

    .hero-pain {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 13px;
      border-radius: 999px;
      color: #604719;
      background: rgba(255, 245, 223, .86);
      border: 1px solid rgba(214, 168, 95, .28);
      margin-bottom: 18px;
      font-weight: 800;
      font-size: 14px;
    }

    .hero-intro {
      font-size: clamp(17px, 2vw, 20px);
      color: #485366;
      max-width: 760px;
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: flex-end;
    }

    .hero-data {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .data-chip {
      padding: 16px;
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, .76);
      border: 1px solid rgba(31, 41, 55, .08);
      box-shadow: 0 8px 24px rgba(17, 24, 39, .05);
    }

    .data-chip strong {
      display: block;
      font-size: 25px;
      line-height: 1;
      color: var(--color-primary);
      letter-spacing: -0.04em;
      margin-bottom: 7px;
    }

    .data-chip span {
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 700;
    }

    .demo-stage {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 18px;
      align-items: stretch;
    }

    .demo-panel {
      border-radius: 28px;
      background: rgba(17, 24, 39, .96);
      color: #fff;
      padding: 24px;
      min-height: 280px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 26px 70px rgba(17, 24, 39, .18);
    }

    .demo-panel::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      right: -80px;
      top: -100px;
      background: radial-gradient(circle, rgba(214, 168, 95, .42), transparent 62%);
    }

    .demo-toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 26px;
      position: relative;
      z-index: 1;
    }

    .demo-dots {
      display: flex;
      gap: 7px;
    }

    .demo-dots i {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .3);
    }

    .demo-dots i:nth-child(2) {
      background: rgba(214, 168, 95, .82);
    }

    .demo-label {
      font-size: 13px;
      color: rgba(255, 255, 255, .72);
      font-weight: 800;
    }

    .demo-content {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 18px;
    }

    .demo-row {
      display: grid;
      grid-template-columns: 74px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 16px;
      border-radius: 20px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .10);
      backdrop-filter: blur(10px);
    }

    .demo-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: #2c210f;
      background: linear-gradient(135deg, #f5dc9f, #c79445);
      font-size: 22px;
    }

    .demo-row h3 {
      margin-bottom: 3px;
      color: #fff;
      font-size: 18px;
    }

    .demo-row p {
      color: rgba(255, 255, 255, .66);
      font-size: 14px;
      line-height: 1.55;
    }

    .demo-progress {
      min-width: 86px;
      text-align: right;
      color: #f1d392;
      font-weight: 900;
    }

    .side-stack {
      display: grid;
      gap: 18px;
    }

    .mini-card {
      border-radius: 26px;
      padding: 22px;
      background: rgba(255, 255, 255, .86);
      border: 1px solid rgba(31, 41, 55, .08);
      box-shadow: 0 12px 30px rgba(17, 24, 39, .06);
    }

    .mini-card.dark {
      color: #fff;
      background:
        linear-gradient(145deg, rgba(31, 41, 55, .96), rgba(17, 24, 39, .96));
    }

    .mini-card.dark p,
    .mini-card.dark span {
      color: rgba(255, 255, 255, .7);
    }

    .mini-card h3 {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .mini-card .score {
      display: block;
      font-size: 42px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.05em;
      color: var(--color-primary);
      margin-bottom: 8px;
    }

    .mini-card.dark .score {
      color: #f5dca0;
    }

    .countdown-section {
      padding-top: 20px;
    }

    .countdown-wrap {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
      align-items: stretch;
    }

    .countdown-copy,
    .countdown-board {
      border-radius: var(--radius-lg);
      padding: clamp(24px, 4vw, 36px);
      border: 1px solid var(--color-border);
      background: rgba(255, 255, 255, .84);
      box-shadow: var(--shadow-soft);
    }

    .countdown-copy {
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 245, 223, .74));
    }

    .countdown-board {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      background: var(--color-primary);
      border-color: rgba(255, 255, 255, .12);
    }

    .time-box {
      padding: 20px 12px;
      border-radius: 22px;
      text-align: center;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .time-box strong {
      display: block;
      font-size: clamp(30px, 5vw, 54px);
      line-height: 1;
      letter-spacing: -0.04em;
      color: #f4dba1;
      margin-bottom: 10px;
    }

    .time-box span {
      color: rgba(255, 255, 255, .72);
      font-weight: 800;
      font-size: 13px;
    }

    .highlight-wall {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .74) 55%, rgba(255, 255, 255, 0));
    }

    .highlight-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      grid-auto-rows: minmax(210px, auto);
      gap: 18px;
    }

    .highlight-card {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      padding: 26px;
      background: rgba(255, 255, 255, .88);
      border: 1px solid var(--color-border);
      box-shadow: 0 12px 30px rgba(17, 24, 39, .06);
      transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
    }

    .highlight-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(214, 168, 95, .34);
    }

    .highlight-card.featured {
      grid-row: span 2;
      color: #fff;
      background:
        linear-gradient(145deg, rgba(17, 24, 39, .96), rgba(43, 39, 31, .95)),
        radial-gradient(circle at 40% 10%, rgba(214, 168, 95, .35), transparent 34%);
    }

    .highlight-card.featured h3,
    .highlight-card.featured .big-number {
      color: #fff;
    }

    .highlight-card.featured p {
      color: rgba(255, 255, 255, .72);
    }

    .highlight-card.tall {
      min-height: 310px;
    }

    .highlight-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 17px;
      margin-bottom: 18px;
      color: #2c210f;
      background: linear-gradient(135deg, #f7e3af, #d2a054);
    }

    .big-number {
      display: block;
      font-size: clamp(50px, 8vw, 96px);
      line-height: .9;
      font-weight: 900;
      letter-spacing: -0.08em;
      color: var(--color-primary);
      margin: 30px 0 16px;
    }

    .seed-list {
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }

    .seed-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 14px;
      border-radius: 17px;
      background: rgba(255, 255, 255, .09);
      border: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .86);
      font-weight: 800;
    }

    .seed-item span {
      color: #f5dca0;
      font-size: 13px;
    }

    .ticket-section {
      background:
        linear-gradient(180deg, rgba(17, 24, 39, .02), rgba(17, 24, 39, .05)),
        var(--color-surface-2);
      border-top: 1px solid rgba(31, 41, 55, .06);
      border-bottom: 1px solid rgba(31, 41, 55, .06);
    }

    .ticket-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .ticket-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 28px;
      border-radius: 30px;
      background: #fff;
      border: 1px solid var(--color-border);
      box-shadow: 0 12px 28px rgba(17, 24, 39, .06);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    }

    .ticket-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(214, 168, 95, .38);
    }

    .ticket-card.recommend {
      background:
        linear-gradient(180deg, rgba(255, 245, 223, .92), #fff 42%);
      border: 2px solid rgba(214, 168, 95, .58);
      box-shadow: 0 24px 60px rgba(214, 168, 95, .16);
    }

    .ticket-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
    }

    .ticket-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin: 22px 0;
      color: var(--color-primary);
    }

    .ticket-price small {
      font-weight: 800;
      color: var(--color-muted);
    }

    .ticket-price strong {
      font-size: 48px;
      line-height: 1;
      letter-spacing: -0.06em;
      font-weight: 900;
    }

    .feature-list {
      list-style: none;
      margin: 0 0 24px;
      padding: 0;
      display: grid;
      gap: 12px;
    }

    .feature-list li {
      display: flex;
      gap: 10px;
      color: #4b5563;
      font-weight: 650;
      line-height: 1.55;
    }

    .feature-list i {
      margin-top: 4px;
      color: var(--color-accent-dark);
      flex-shrink: 0;
    }

    .ticket-card .btn {
      margin-top: auto;
      width: 100%;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) 360px;
      gap: 22px;
      align-items: start;
    }

    .news-list {
      border-radius: 30px;
      background: rgba(255, 255, 255, .86);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .news-item {
      display: grid;
      grid-template-columns: 110px minmax(0, 1fr) auto;
      gap: 20px;
      padding: 24px;
      border-bottom: 1px solid rgba(31, 41, 55, .08);
      align-items: center;
      transition: background .22s var(--ease);
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-item:hover {
      background: rgba(255, 245, 223, .48);
    }

    .news-date {
      color: #8a6228;
      font-weight: 900;
      font-size: 14px;
    }

    .news-item a {
      display: inline-block;
      font-size: 18px;
      color: var(--color-primary);
      font-weight: 850;
      line-height: 1.45;
      margin-bottom: 6px;
    }

    .news-item a:hover {
      color: var(--color-accent-dark);
    }

    .news-item p {
      font-size: 14px;
      line-height: 1.65;
    }

    .news-arrow {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--color-primary);
      background: rgba(17, 24, 39, .05);
    }

    .news-item:hover .news-arrow {
      background: var(--color-primary);
      color: #fff;
    }

    .recommend-box {
      border-radius: 30px;
      padding: 26px;
      background:
        linear-gradient(145deg, rgba(17, 24, 39, .96), rgba(38, 35, 30, .95));
      color: #fff;
      box-shadow: 0 26px 62px rgba(17, 24, 39, .18);
      position: sticky;
      top: 126px;
    }

    .recommend-box h3 {
      color: #fff;
      margin-bottom: 14px;
    }

    .recommend-box p {
      color: rgba(255, 255, 255, .7);
    }

    .recommend-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 22px 0;
    }

    .recommend-tags span {
      border: 1px solid rgba(255, 255, 255, .14);
      background: rgba(255, 255, 255, .08);
      color: rgba(255, 255, 255, .82);
      border-radius: 999px;
      padding: 7px 10px;
      font-size: 13px;
      font-weight: 800;
    }

    .signup-section {
      padding-top: 54px;
    }

    .signup-panel {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 22px;
      align-items: stretch;
      border-radius: var(--radius-xl);
      padding: clamp(22px, 4vw, 34px);
      background:
        radial-gradient(circle at 10% 10%, rgba(214, 168, 95, .28), transparent 28%),
        linear-gradient(135deg, #111827, #252019);
      box-shadow: 0 30px 75px rgba(17, 24, 39, .22);
      color: #fff;
      overflow: hidden;
    }

    .signup-copy {
      padding: clamp(10px, 3vw, 22px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 30px;
    }

    .signup-copy h2 {
      color: #fff;
    }

    .signup-copy p {
      color: rgba(255, 255, 255, .72);
    }

    .trust-strip {
      display: grid;
      gap: 12px;
    }

    .trust-line {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, .82);
      font-weight: 750;
    }

    .trust-line i {
      color: #f2d79c;
    }

    .signup-form {
      border-radius: 30px;
      padding: clamp(22px, 4vw, 30px);
      background: rgba(255, 255, 255, .95);
      border: 1px solid rgba(255, 255, 255, .58);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-bottom: 14px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    .form-label {
      display: block;
      color: #344054;
      font-size: 13px;
      font-weight: 850;
      margin-bottom: 7px;
    }

    .privacy-note {
      color: #667085;
      font-size: 13px;
      line-height: 1.7;
      margin: 12px 0 18px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 28px;
      align-items: start;
    }

    .faq-aside {
      position: sticky;
      top: 126px;
      border-radius: 30px;
      padding: 28px;
      background: rgba(255, 255, 255, .86);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-soft);
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border-radius: 24px;
      background: rgba(255, 255, 255, .9);
      border: 1px solid var(--color-border);
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(17, 24, 39, .05);
    }

    .faq-question {
      width: 100%;
      min-height: 68px;
      padding: 20px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      text-align: left;
      color: var(--color-primary);
      background: transparent;
      font-weight: 900;
    }

    .faq-question i {
      transition: transform .22s var(--ease);
      color: var(--color-accent-dark);
    }

    .faq-answer {
      display: none;
      padding: 0 22px 22px;
      color: var(--color-muted);
      line-height: 1.85;
    }

    .faq-item.active {
      border-color: rgba(214, 168, 95, .42);
      background: #fff;
    }

    .faq-item.active .faq-answer {
      display: block;
      animation: fadeIn .22s var(--ease);
    }

    .faq-item.active .faq-question i {
      transform: rotate(45deg);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-4px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .site-footer {
      padding: 64px 0 28px;
      background: #0f172a;
      color: rgba(255, 255, 255, .78);
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(214, 168, 95, .18), transparent 66%);
      right: -100px;
      top: -130px;
    }

    .footer-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr .7fr .7fr;
      gap: 38px;
      padding-bottom: 38px;
      border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .footer-brand .brand-name {
      color: #fff;
    }

    .footer-brand .brand-sub {
      color: rgba(255, 255, 255, .58);
    }

    .footer-title {
      color: #fff;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .68);
      width: fit-content;
    }

    .footer-links a:hover {
      color: #f2d79c;
      transform: translateX(3px);
    }

    .footer-bottom {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding-top: 24px;
      font-size: 13px;
      color: rgba(255, 255, 255, .56);
    }

    .footer-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .footer-badges span {
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .10);
      color: rgba(255, 255, 255, .72);
      font-weight: 750;
    }

    .float-cta {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 40;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 999px;
      color: #241a0c;
      background: linear-gradient(135deg, #f6e1ac, #d6a85f);
      box-shadow: 0 18px 42px rgba(17, 24, 39, .18);
      font-weight: 900;
    }

    .float-cta:hover {
      color: #111827;
      transform: translateY(-3px);
      box-shadow: 0 22px 50px rgba(17, 24, 39, .24);
    }

    @media (max-width: 1024px) {
      :root {
        --nav-height: 68px;
      }

      .nav-center,
      .nav-actions .desktop-only,
      .main-nav .btn {
        display: none;
      }

      .mobile-toggle {
        display: inline-grid;
        place-items: center;
      }

      .main-nav {
        grid-template-columns: auto 1fr auto;
      }

      .nav-actions {
        display: flex;
      }

      .hero-top,
      .demo-stage,
      .countdown-wrap,
      .signup-panel,
      .faq-grid,
      .news-layout {
        grid-template-columns: 1fr;
      }

      .hero-actions {
        justify-content: flex-start;
      }

      .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .ticket-grid {
        grid-template-columns: 1fr;
      }

      .recommend-box,
      .faq-aside {
        position: relative;
        top: auto;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(calc(100% - 24px), var(--container));
      }

      .promo-inner {
        justify-content: center;
        text-align: center;
      }

      .promo-actions {
        display: none;
      }

      .brand-sub {
        display: none;
      }

      .section {
        padding: 68px 0;
      }

      .section-tight {
        padding: 56px 0;
      }

      .section-heading {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .hero {
        padding: 42px 0 38px;
      }

      .hero-shell {
        border-radius: 28px;
        padding: 24px;
      }

      .hero-shell::before {
        display: none;
      }

      .hero-data,
      .countdown-board,
      .highlight-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .demo-row {
        grid-template-columns: 54px 1fr;
      }

      .demo-progress {
        grid-column: 2;
        min-width: auto;
        text-align: left;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .news-arrow {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .float-cta {
        right: 12px;
        bottom: 14px;
        min-height: 44px;
        padding: 0 14px;
        font-size: 14px;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 42px;
        letter-spacing: -0.05em;
      }

      h2 {
        font-size: 30px;
      }

      .brand-name {
        font-size: 16px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 13px;
      }

      .hero-actions,
      .ticket-top {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .demo-panel,
      .mini-card,
      .countdown-copy,
      .countdown-board,
      .highlight-card,
      .ticket-card,
      .news-list,
      .recommend-box,
      .signup-form,
      .faq-aside {
        border-radius: 22px;
      }

      .signup-panel {
        border-radius: 26px;
      }
    }
