/* roulang page: index */
:root {
      --bg: #0d0b1d;
      --bg-soft: #151228;
      --bg-card: rgba(255, 255, 255, 0.075);
      --bg-card-strong: rgba(255, 255, 255, 0.12);
      --text: #fff8ef;
      --text-strong: #ffffff;
      --muted: #c7bdd8;
      --muted-2: #978baa;
      --primary: #ff7a59;
      --primary-2: #ffbf69;
      --secondary: #8e6cff;
      --accent: #35e0b4;
      --danger: #ff5c91;
      --line: rgba(255, 255, 255, 0.14);
      --line-strong: rgba(255, 255, 255, 0.24);
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
      --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.22);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --container: 1180px;
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      font-family: var(--font);
      line-height: 1.65;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(142, 108, 255, 0.28), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(255, 122, 89, 0.22), transparent 25%),
        linear-gradient(180deg, #0b0918 0%, #161024 48%, #0e0d18 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
    }

    input,
    select,
    textarea {
      width: 100%;
      color: var(--text);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      outline: none;
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    input:focus,
    select:focus,
    textarea:focus,
    button:focus-visible,
    a:focus-visible {
      outline: 3px solid rgba(53, 224, 180, 0.26);
      outline-offset: 3px;
      border-color: rgba(53, 224, 180, 0.65);
      box-shadow: 0 0 0 4px rgba(53, 224, 180, 0.10);
    }

    ::selection {
      color: #120d20;
      background: var(--primary-2);
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(13, 11, 29, 0.78);
      backdrop-filter: blur(18px);
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -0.04em;
      color: var(--text-strong);
      white-space: nowrap;
    }

    .logo-mark {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background:
        linear-gradient(135deg, rgba(255, 122, 89, 0.95), rgba(142, 108, 255, 0.96));
      box-shadow: 0 14px 28px rgba(255, 122, 89, 0.22);
      position: relative;
      overflow: hidden;
    }

    .logo-mark::after {
      content: "";
      width: 16px;
      height: 16px;
      border: 3px solid rgba(255, 255, 255, 0.92);
      border-left-color: transparent;
      border-bottom-color: transparent;
      border-radius: 50%;
      transform: rotate(42deg);
    }

    .logo-text {
      font-size: 18px;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      padding: 10px 14px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      transition: color var(--ease), background var(--ease), transform var(--ease);
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--text-strong);
      background: rgba(255, 255, 255, 0.10);
    }

    .nav-link:active {
      transform: translateY(1px);
    }

    .region-switch {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.07);
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
    }

    .region-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(53, 224, 180, 0.14);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 10px 16px;
      border-radius: 999px;
      color: #19111a;
      background: linear-gradient(135deg, var(--primary-2), var(--primary));
      font-size: 14px;
      font-weight: 900;
      box-shadow: 0 14px 28px rgba(255, 122, 89, 0.20);
      transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(255, 122, 89, 0.30);
      filter: saturate(1.08);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.09);
      color: var(--text);
      position: relative;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform var(--ease), top var(--ease), opacity var(--ease);
    }

    .menu-toggle span { top: 21px; }
    .menu-toggle::before { top: 14px; }
    .menu-toggle::after { top: 28px; }

    .menu-toggle.is-open span { opacity: 0; }
    .menu-toggle.is-open::before { top: 21px; transform: rotate(45deg); }
    .menu-toggle.is-open::after { top: 21px; transform: rotate(-45deg); }

    main {
      position: relative;
      z-index: 1;
    }

    section {
      padding: 86px 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      padding: 7px 12px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 999px;
      color: var(--primary-2);
      background: rgba(255, 255, 255, 0.07);
      font-size: 13px;
      font-weight: 900;
    }

    .section-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 18px currentColor;
    }

    .section-title {
      max-width: 790px;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.12;
      letter-spacing: -0.055em;
      color: var(--text-strong);
      font-weight: 950;
    }

    .section-desc {
      max-width: 740px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 16px;
    }

    .hero {
      padding: 54px 0 92px;
      min-height: calc(100vh - 76px);
      display: flex;
      align-items: center;
    }

    .hero-shell {
      width: 100%;
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 34px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 44px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
        radial-gradient(circle at 10% 12%, rgba(255, 122, 89, 0.18), transparent 36%);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .hero-copy::after {
      content: "";
      position: absolute;
      right: -100px;
      bottom: -120px;
      width: 270px;
      height: 270px;
      border-radius: 50%;
      background: rgba(142, 108, 255, 0.22);
      filter: blur(8px);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      padding: 9px 13px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.18);
      color: var(--text);
      font-size: 13px;
      font-weight: 800;
    }

    .hero-badge i {
      width: 9px;
      height: 9px;
      display: inline-block;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 7px rgba(53, 224, 180, 0.12);
    }

    h1 {
      max-width: 680px;
      color: var(--text-strong);
      font-size: clamp(42px, 6.3vw, 74px);
      line-height: 0.98;
      letter-spacing: -0.07em;
      font-weight: 950;
    }

    .hero-lead {
      max-width: 610px;
      margin-top: 24px;
      color: #e8deef;
      font-size: 18px;
      line-height: 1.9;
    }

    .hero-actions {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 12px 18px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 900;
      transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
    }

    .btn-primary {
      color: #1b121a;
      background: linear-gradient(135deg, var(--primary-2), var(--primary));
      box-shadow: 0 16px 34px rgba(255, 122, 89, 0.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 46px rgba(255, 122, 89, 0.34);
    }

    .btn-ghost {
      color: var(--text);
      border: 1px solid var(--line-strong);
      background: rgba(255, 255, 255, 0.07);
    }

    .btn-ghost:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.32);
    }

    .btn-text {
      color: var(--primary-2);
      padding-inline: 6px;
    }

    .btn-text:hover {
      color: var(--text-strong);
      transform: translateX(3px);
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 34px;
      position: relative;
      z-index: 1;
    }

    .point {
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.07);
    }

    .point strong {
      display: block;
      color: var(--text-strong);
      font-size: 24px;
      line-height: 1.15;
      letter-spacing: -0.04em;
    }

    .point span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 12px;
    }

    .hero-stage {
      min-height: 650px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 50% 20%, rgba(255, 191, 105, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.045));
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
      display: grid;
      align-items: center;
      padding: 28px;
    }

    .reel-wall {
      height: 100%;
      display: grid;
      grid-template-columns: 0.82fr 1.08fr 0.82fr;
      gap: 16px;
      align-items: center;
      transform: rotate(-2deg);
    }

    .reel-column {
      display: grid;
      gap: 16px;
    }

    .reel-card {
      min-height: 190px;
      border-radius: 28px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
        radial-gradient(circle at 25% 20%, rgba(255, 122, 89, 0.30), transparent 38%),
        radial-gradient(circle at 78% 72%, rgba(142, 108, 255, 0.28), transparent 34%);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform var(--ease), border-color var(--ease);
    }

    .reel-card:hover {
      transform: translateY(-5px) scale(1.015);
      border-color: rgba(255, 191, 105, 0.36);
    }

    .reel-card.tall {
      min-height: 420px;
      background:
        linear-gradient(180deg, rgba(12, 10, 26, 0.08), rgba(12, 10, 26, 0.52)),
        radial-gradient(circle at 50% 12%, rgba(255, 191, 105, 0.34), transparent 35%),
        linear-gradient(135deg, rgba(255, 122, 89, 0.38), rgba(142, 108, 255, 0.34));
    }

    .reel-card::before {
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      pointer-events: none;
    }

    .reel-top {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--text);
      background: rgba(0, 0, 0, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.12);
      font-size: 12px;
      font-weight: 800;
    }

    .pulse {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--danger);
      box-shadow: 0 0 0 6px rgba(255, 92, 145, 0.15);
    }

    .reel-caption {
      position: relative;
      z-index: 1;
    }

    .reel-caption strong {
      display: block;
      color: #fff;
      font-size: 22px;
      line-height: 1.22;
      letter-spacing: -0.04em;
    }

    .reel-caption span {
      display: block;
      margin-top: 8px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 13px;
    }

    .floating-note {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 28px;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      padding: 14px 16px;
      border-radius: 20px;
      background: rgba(12, 10, 26, 0.68);
      border: 1px solid rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(14px);
      z-index: 2;
    }

    .floating-note b {
      color: var(--text-strong);
      font-size: 14px;
    }

    .floating-note span {
      color: var(--muted);
      font-size: 12px;
    }

    .brand-story {
      padding-top: 70px;
    }

    .story-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 22px;
      align-items: stretch;
    }

    .story-panel,
    .metric-panel,
    .card,
    .bubble,
    .news-wrap,
    .safety-card,
    .faq-item,
    .subscribe-card {
      border: 1px solid var(--line);
      background: var(--bg-card);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(14px);
    }

    .story-panel {
      padding: 34px;
      border-radius: var(--radius-xl);
      display: grid;
      gap: 24px;
    }

    .story-panel p {
      color: var(--muted);
      font-size: 16px;
    }

    .story-list {
      display: grid;
      gap: 14px;
      list-style: none;
    }

    .story-list li {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 12px;
      align-items: start;
      padding: 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.065);
      border: 1px solid rgba(255, 255, 255, 0.09);
    }

    .story-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      background: rgba(255, 191, 105, 0.14);
      color: var(--primary-2);
      font-weight: 950;
    }

    .story-list strong {
      display: block;
      color: var(--text-strong);
      margin-bottom: 4px;
    }

    .story-list span {
      color: var(--muted);
      font-size: 14px;
    }

    .metric-panel {
      padding: 26px;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 80% 0%, rgba(53, 224, 180, 0.13), transparent 34%),
        rgba(255, 255, 255, 0.075);
    }

    .dashboard-title {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      margin-bottom: 22px;
    }

    .dashboard-title h3 {
      color: var(--text-strong);
      font-size: 22px;
      letter-spacing: -0.04em;
    }

    .status {
      color: var(--accent);
      font-size: 12px;
      font-weight: 900;
    }

    .metric-grid {
      display: grid;
      gap: 14px;
    }

    .metric-row {
      padding: 16px;
      border-radius: 18px;
      background: rgba(0, 0, 0, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.10);
    }

    .metric-head {
      display: flex;
      justify-content: space-between;
      color: var(--text);
      font-weight: 850;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .bar {
      height: 9px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.10);
    }

    .bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--accent), var(--primary-2), var(--primary));
    }

    .featured {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 70%);
    }

    .featured-head {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 24px;
      align-items: end;
    }

    .service-matrix {
      margin-top: 34px;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr 0.92fr;
      gap: 18px;
    }

    .card {
      border-radius: var(--radius-lg);
      padding: 24px;
      min-height: 230px;
      transition: transform var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
      position: relative;
      overflow: hidden;
    }

    .card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 191, 105, 0.30);
      background: var(--bg-card-strong);
      box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
    }

    .card.wide {
      grid-row: span 2;
      min-height: 478px;
      background:
        radial-gradient(circle at 18% 12%, rgba(255, 122, 89, 0.18), transparent 38%),
        rgba(255, 255, 255, 0.08);
    }

    .card-number {
      font-size: 13px;
      font-weight: 950;
      color: var(--primary-2);
    }

    .card h3 {
      margin-top: 18px;
      color: var(--text-strong);
      font-size: 24px;
      line-height: 1.25;
      letter-spacing: -0.045em;
    }

    .card p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 14px;
    }

    .tag-row {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.10);
      font-size: 12px;
      font-weight: 800;
    }

    .mini-list {
      margin-top: 22px;
      display: grid;
      gap: 10px;
      list-style: none;
    }

    .mini-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--muted);
      font-size: 14px;
    }

    .mini-list li::before {
      content: "✓";
      flex: 0 0 22px;
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #102018;
      background: var(--accent);
      font-size: 12px;
      font-weight: 950;
      margin-top: 1px;
    }

    .bubble-section {
      padding-top: 70px;
    }

    .bubble-wall {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 16px;
    }

    .bubble {
      border-radius: 28px;
      padding: 22px;
      background: rgba(255, 255, 255, 0.08);
      transition: transform var(--ease), background var(--ease);
    }

    .bubble:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.12);
    }

    .bubble:nth-child(1) { grid-column: span 5; }
    .bubble:nth-child(2) { grid-column: span 4; margin-top: 28px; }
    .bubble:nth-child(3) { grid-column: span 3; }
    .bubble:nth-child(4) { grid-column: span 4; }
    .bubble:nth-child(5) { grid-column: span 5; }
    .bubble:nth-child(6) { grid-column: span 3; margin-top: -18px; }

    .bubble-user {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #20131b;
      background: linear-gradient(135deg, var(--primary-2), var(--accent));
      font-weight: 950;
    }

    .bubble-user strong {
      display: block;
      color: var(--text-strong);
      font-size: 14px;
    }

    .bubble-user span {
      display: block;
      color: var(--muted-2);
      font-size: 12px;
    }

    .bubble p {
      color: var(--muted);
      font-size: 14px;
    }

    .news-section {
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(255, 255, 255, 0.02));
    }

    .news-wrap {
      margin-top: 34px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.35fr 0.65fr;
    }

    .news-list {
      padding: 10px;
      display: grid;
      gap: 0;
    }

    .news-item {
      display: grid;
      grid-template-columns: 110px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 20px;
      border-radius: 20px;
      border: 1px solid transparent;
      transition: background var(--ease), border-color var(--ease), transform var(--ease);
    }

    .news-item + .news-item {
      border-top-color: rgba(255, 255, 255, 0.08);
      border-radius: 0;
    }

    .news-item:hover {
      background: rgba(255, 255, 255, 0.075);
      border-color: rgba(255, 255, 255, 0.13);
      transform: translateX(4px);
    }

    .news-date {
      color: var(--primary-2);
      font-size: 13px;
      font-weight: 950;
    }

    .news-title {
      display: block;
      color: var(--text-strong);
      font-size: 16px;
      font-weight: 900;
      line-height: 1.45;
    }

    .news-summary {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 13px;
    }

    .arrow {
      color: var(--muted-2);
      font-size: 20px;
      transition: transform var(--ease), color var(--ease);
    }

    .news-item:hover .arrow {
      transform: translateX(4px);
      color: var(--primary-2);
    }

    .recommend-side {
      padding: 26px;
      border-left: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(0, 0, 0, 0.14);
    }

    .recommend-side h3 {
      color: var(--text-strong);
      font-size: 22px;
      letter-spacing: -0.04em;
    }

    .recommend-side p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .quick-tags {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .update-section {
      padding-top: 70px;
    }

    .update-board {
      margin-top: 30px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: rgba(255, 255, 255, 0.07);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .update-row {
      display: grid;
      grid-template-columns: 1fr 150px 140px 160px;
      gap: 18px;
      align-items: center;
      padding: 18px 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .update-row:last-child {
      border-bottom: 0;
    }

    .update-row.header-row {
      color: var(--muted-2);
      font-size: 12px;
      font-weight: 900;
      background: rgba(0, 0, 0, 0.15);
    }

    .update-name {
      color: var(--text-strong);
      font-weight: 900;
    }

    .update-note {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 400;
    }

    .state {
      display: inline-flex;
      justify-content: center;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.07);
    }

    .state.ok { color: var(--accent); }
    .state.hot { color: var(--primary-2); }
    .state.check { color: #bda8ff; }

    .trust-section {
      padding-top: 70px;
    }

    .trust-grid {
      margin-top: 34px;
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 22px;
      align-items: start;
    }

    .safety-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .safety-card {
      border-radius: var(--radius-lg);
      padding: 22px;
      min-height: 178px;
      transition: transform var(--ease), background var(--ease);
    }

    .safety-card:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.11);
    }

    .safety-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: #121322;
      background: linear-gradient(135deg, var(--accent), var(--primary-2));
      font-size: 21px;
      margin-bottom: 16px;
    }

    .safety-card h3 {
      color: var(--text-strong);
      font-size: 18px;
      margin-bottom: 8px;
    }

    .safety-card p {
      color: var(--muted);
      font-size: 14px;
    }

    .compare-card {
      padding: 28px;
      border-radius: var(--radius-xl);
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 100% 10%, rgba(255, 122, 89, 0.13), transparent 36%),
        rgba(255, 255, 255, 0.075);
      box-shadow: var(--shadow-soft);
    }

    .compare-card h3 {
      color: var(--text-strong);
      font-size: 25px;
      letter-spacing: -0.045em;
      margin-bottom: 18px;
    }

    .compare-list {
      display: grid;
      gap: 12px;
      list-style: none;
    }

    .compare-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 12px;
      align-items: start;
      padding: 14px;
      border-radius: 16px;
      background: rgba(0, 0, 0, 0.16);
    }

    .compare-list b {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #1b1317;
      background: var(--primary-2);
      font-size: 13px;
    }

    .compare-list strong {
      display: block;
      color: var(--text-strong);
      font-size: 14px;
    }

    .compare-list span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 13px;
    }

    .faq-section {
      padding-top: 70px;
    }

    .faq-layout {
      margin-top: 34px;
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 22px;
      align-items: start;
    }

    .faq-intro {
      position: sticky;
      top: 105px;
      padding: 28px;
      border-radius: var(--radius-xl);
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.07);
      box-shadow: var(--shadow-soft);
    }

    .faq-intro h3 {
      color: var(--text-strong);
      font-size: 26px;
      letter-spacing: -0.04em;
    }

    .faq-intro p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 14px;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border-radius: 22px;
      padding: 22px;
      overflow: hidden;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      color: var(--text-strong);
      font-size: 17px;
      font-weight: 900;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      flex: 0 0 30px;
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #161120;
      background: var(--primary-2);
      font-size: 18px;
      transition: transform var(--ease);
    }

    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }

    .faq-item p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 14px;
    }

    .subscribe-section {
      padding-bottom: 100px;
    }

    .subscribe-card {
      border-radius: 36px;
      padding: 36px;
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 28px;
      background:
        radial-gradient(circle at 8% 0%, rgba(255, 191, 105, 0.20), transparent 32%),
        radial-gradient(circle at 90% 90%, rgba(53, 224, 180, 0.14), transparent 34%),
        rgba(255, 255, 255, 0.085);
    }

    .member-grid {
      margin-top: 26px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .member-item {
      padding: 16px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      background: rgba(0, 0, 0, 0.14);
    }

    .member-item strong {
      display: block;
      color: var(--text-strong);
      font-size: 15px;
    }

    .member-item span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 13px;
    }

    .form-box {
      padding: 24px;
      border-radius: 26px;
      background: rgba(12, 10, 26, 0.50);
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .form-title {
      color: var(--text-strong);
      font-size: 24px;
      letter-spacing: -0.04em;
      margin-bottom: 8px;
    }

    .form-help {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 20px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      display: block;
      margin-bottom: 8px;
      color: var(--text);
      font-size: 13px;
      font-weight: 850;
    }

    .field input,
    .field select,
    .field textarea {
      min-height: 48px;
      padding: 12px 14px;
    }

    .field textarea {
      min-height: 96px;
      resize: vertical;
    }

    .form-submit {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .form-tip {
      color: var(--muted-2);
      font-size: 12px;
    }

    .form-message {
      display: none;
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 14px;
      color: var(--accent);
      background: rgba(53, 224, 180, 0.10);
      border: 1px solid rgba(53, 224, 180, 0.20);
      font-size: 13px;
      font-weight: 800;
    }

    .site-footer {
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(5, 5, 12, 0.44);
      padding: 38px 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: end;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-strong);
      font-weight: 950;
      font-size: 18px;
      letter-spacing: -0.03em;
    }

    .footer-copy {
      margin-top: 12px;
      max-width: 720px;
      color: var(--muted);
      font-size: 13px;
    }

    .footer-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer-links a {
      padding: 8px 10px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 13px;
      transition: color var(--ease), background var(--ease);
    }

    .footer-links a:hover {
      color: var(--text-strong);
      background: rgba(255, 255, 255, 0.08);
    }

    .copyright {
      margin-top: 16px;
      color: var(--muted-2);
      font-size: 12px;
    }

    .mobile-panel {
      display: none;
    }

    @media (max-width: 1024px) {
      section {
        padding: 72px 0;
      }

      .hero {
        min-height: auto;
        padding-top: 34px;
      }

      .hero-shell,
      .story-grid,
      .featured-head,
      .trust-grid,
      .faq-layout,
      .subscribe-card {
        grid-template-columns: 1fr;
      }

      .hero-stage {
        min-height: 520px;
      }

      .service-matrix {
        grid-template-columns: repeat(2, 1fr);
      }

      .card.wide {
        grid-row: auto;
        grid-column: span 2;
        min-height: 320px;
      }

      .faq-intro {
        position: static;
      }

      .news-wrap {
        grid-template-columns: 1fr;
      }

      .recommend-side {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
      }

      .update-row {
        grid-template-columns: 1fr 120px 120px;
      }

      .update-row span:nth-child(4) {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .nav {
        min-height: 68px;
      }

      .logo-text {
        font-size: 16px;
      }

      .nav-right {
        position: fixed;
        inset: 68px 14px auto 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(13, 11, 29, 0.94);
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
      }

      .nav-right.is-open {
        display: flex;
      }

      .nav-links {
        flex-direction: column;
        align-items: stretch;
      }

      .nav-link,
      .nav-cta,
      .region-switch {
        width: 100%;
        justify-content: center;
      }

      .menu-toggle {
        display: inline-block;
      }

      .hero-copy,
      .story-panel,
      .metric-panel,
      .subscribe-card {
        padding: 24px;
        border-radius: 26px;
      }

      h1 {
        font-size: clamp(38px, 12vw, 58px);
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-points {
        grid-template-columns: 1fr;
      }

      .hero-stage {
        min-height: 460px;
        padding: 18px;
      }

      .reel-wall {
        grid-template-columns: 1fr 1fr;
        transform: rotate(-1deg);
      }

      .reel-column:last-child {
        display: none;
      }

      .reel-card.tall {
        min-height: 360px;
      }

      .service-matrix,
      .safety-grid,
      .member-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .card.wide {
        grid-column: auto;
      }

      .bubble-wall {
        grid-template-columns: 1fr;
      }

      .bubble:nth-child(n) {
        grid-column: auto;
        margin-top: 0;
      }

      .news-item {
        grid-template-columns: 1fr auto;
        gap: 8px 14px;
      }

      .news-date {
        grid-column: 1 / -1;
      }

      .update-board {
        display: grid;
        gap: 12px;
        border: 0;
        background: transparent;
        box-shadow: none;
      }

      .update-row,
      .update-row.header-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.075);
      }

      .update-row.header-row {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      section {
        padding: 58px 0;
      }

      .hero {
        padding-bottom: 64px;
      }

      .hero-actions,
      .form-submit {
        align-items: stretch;
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .hero-stage {
        min-height: 400px;
      }

      .reel-wall {
        gap: 10px;
      }

      .reel-card {
        min-height: 160px;
        border-radius: 22px;
        padding: 14px;
      }

      .reel-card.tall {
        min-height: 310px;
      }

      .reel-caption strong {
        font-size: 18px;
      }

      .floating-note {
        left: 16px;
        right: 16px;
        bottom: 16px;
        align-items: flex-start;
        flex-direction: column;
      }

      .section-title {
        font-size: clamp(28px, 9vw, 40px);
      }

      .card,
      .safety-card,
      .faq-item {
        padding: 20px;
      }
    }
