    :root {
      --bg: #f3f7ff;
      --surface: #ffffff;
      --text-main: #0f172a;
      --text-sub: #475569;
      --line: #d7e3ff;
      --primary-1: #4f46e5;
      --primary-2: #0ea5e9;
      --primary-3: #2563eb;
      --shadow-soft: 0 10px 30px rgba(29, 78, 216, 0.12);
      --shadow-card: 0 8px 22px rgba(15, 23, 42, 0.08);
      --radius-lg: 18px;
      --radius-md: 14px;
      --radius-sm: 12px;
      --container: 1240px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "PingFang SC", "Inter", "Segoe UI", sans-serif;
      color: var(--text-main);
      background:
        radial-gradient(circle at 80% -20%, rgba(79, 70, 229, 0.18), transparent 45%),
        radial-gradient(circle at 10% 10%, rgba(14, 165, 233, 0.16), transparent 40%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(var(--container), calc(100% - 64px));
      margin: 0 auto;
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(199, 210, 254, 0.6);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 72px;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-logo {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: block;
      object-fit: cover;
      box-shadow: 0 8px 16px rgba(79, 70, 229, 0.18);
    }

    .brand-text {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
    }

    .brand-text strong {
      display: inline-flex;
      align-items: center;
      font-size: 18px;
      letter-spacing: 0.2px;
      line-height: 1.2;
    }

    .top-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      padding: 10px 18px;
      cursor: pointer;
      transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
      box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #4338ca, #0284c7);
      box-shadow: 0 12px 26px rgba(67, 56, 202, 0.33);
    }

    .btn-secondary {
      background: #fff;
      color: var(--primary-3);
      border-color: #b9ccff;
    }

    .btn-secondary:hover {
      color: #1d4ed8;
      border-color: #90b4ff;
      box-shadow: 0 10px 20px rgba(59, 130, 246, 0.15);
    }

    main {
      padding-top: 96px;
    }

    .hero-wrap {
      padding: 34px 0 10px;
    }

    .hero {
      position: relative;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 36px;
      padding: 52px;
      border-radius: 24px;
      background:
        radial-gradient(circle at 85% 10%, rgba(14, 165, 233, 0.18), transparent 40%),
        linear-gradient(135deg, rgba(79, 70, 229, 0.06), rgba(14, 165, 233, 0.08)),
        #fff;
      border: 1px solid rgba(191, 219, 254, 0.8);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(79, 70, 229, 0.2), transparent 70%);
      right: -100px;
      top: -120px;
      pointer-events: none;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #eef3ff;
      color: #334155;
      border-radius: 999px;
      border: 1px solid #d6e4ff;
      padding: 7px 12px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .hero-title {
      margin: 0;
      font-size: clamp(38px, 5vw, 62px);
      line-height: 1.06;
      letter-spacing: -1px;
    }

    .hero-sub {
      margin: 16px 0 0;
      font-size: 19px;
      color: #1e293b;
      font-weight: 600;
      line-height: 1.5;
    }

    .hero-sub small {
      display: block;
      margin-top: 8px;
      font-size: 15px;
      color: var(--text-sub);
      font-weight: 500;
    }

    .hero-actions {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-visual {
      aspect-ratio: 16 / 10;
      border-radius: 20px;
      overflow: hidden;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-visual img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      display: block;
    }

    .section {
      padding: 58px 0 76px;
    }

    .section-head {
      text-align: center;
      margin-bottom: 34px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(30px, 3.6vw, 42px);
      line-height: 1.2;
      letter-spacing: -0.3px;
    }

    .section-head p {
      margin: 12px auto 0;
      font-size: 16px;
      color: var(--text-sub);
      max-width: 680px;
    }

    .official-section {
      padding: 58px 0 76px;
      background: linear-gradient(180deg, rgba(248, 251, 255, 0) 0%, rgba(238, 244, 255, 0.5) 100%);
    }

    .official-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .official-header h2 {
      margin: 0;
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.2;
      letter-spacing: -0.5px;
      color: var(--text-main);
    }

    .official-header p {
      margin: 12px auto 0;
      font-size: 16px;
      color: var(--text-sub);
      max-width: 600px;
    }

    .official-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .official-card {
      background: #fff;
      border-radius: 16px;
      padding: 24px;
      border: 1px solid rgba(191, 219, 254, 0.6);
      box-shadow: var(--shadow-card);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      cursor: pointer;
      position: relative;
    }

    .official-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
    }

    .official-card-header {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 14px;
    }

    .official-card-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .official-card-icon.purple {
      background: linear-gradient(135deg, rgba(168, 134, 255, 0.18), rgba(139, 92, 246, 0.12));
      color: #8b5cf6;
    }

    .official-card-icon.orange {
      background: linear-gradient(135deg, rgba(255, 204, 134, 0.18), rgba(245, 158, 11, 0.12));
      color: #f59e0b;
    }

    .official-card-icon.green {
      background: linear-gradient(135deg, rgba(134, 239, 174, 0.18), rgba(34, 197, 94, 0.12));
      color: #22c55e;
    }

    .official-card-icon.blue {
      background: linear-gradient(135deg, rgba(134, 194, 255, 0.18), rgba(59, 130, 246, 0.12));
      color: #3b82f6;
    }

    .official-card-icon.red {
      background: linear-gradient(135deg, rgba(255, 159, 159, 0.18), rgba(239, 68, 68, 0.12));
      color: #ef4444;
    }

    .official-card-icon.cyan {
      background: linear-gradient(135deg, rgba(134, 234, 255, 0.18), rgba(6, 182, 212, 0.12));
      color: #06b6d4;
    }

    .official-card-content {
      flex: 1;
      min-width: 0;
    }

    .official-card-title {
      margin: 0 0 6px;
      font-size: 17px;
      font-weight: 600;
      color: var(--text-main);
      line-height: 1.3;
    }

    .official-card-desc {
      margin: 0;
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .official-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 12px;
    }

    .official-card-author {
      font-size: 12px;
      color: var(--text-sub);
      font-weight: 500;
    }

    .official-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.15));
      color: #2563eb;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 600;
    }

    .official-badge::before {
      content: "◆";
      font-size: 8px;
    }

    @media (max-width: 1024px) {
      .official-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .official-grid {
        grid-template-columns: 1fr;
      }

      .official-section {
        padding: 44px 0 56px;
      }
    }

    .community-section {
      padding: 58px 0 76px;
      background: linear-gradient(180deg, rgba(238, 244, 255, 0.5) 0%, rgba(248, 251, 255, 0) 100%);
    }

    .community-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .community-header h2 {
      margin: 0;
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.2;
      letter-spacing: -0.5px;
      color: var(--text-main);
    }

    .community-header p {
      margin: 12px auto 0;
      font-size: 16px;
      color: var(--text-sub);
      max-width: 600px;
    }

    .community-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .community-card {
      background: #fff;
      border-radius: 16px;
      padding: 24px;
      border: 1px solid rgba(191, 219, 254, 0.6);
      box-shadow: var(--shadow-card);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      cursor: pointer;
      position: relative;
    }

    .community-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 32px rgba(15, 23, 42, 0.16);
    }

    .community-card-header {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 14px;
    }

    .community-card-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .community-card-icon.blue-light {
      background: rgba(59, 130, 246, 0.08);
      color: #3b82f6;
    }

    .community-card-icon.red-light {
      background: rgba(239, 68, 68, 0.08);
      color: #ef4444;
    }

    .community-card-icon.green-light {
      background: rgba(34, 197, 94, 0.08);
      color: #22c55e;
    }

    .community-card-icon.purple-light {
      background: rgba(139, 92, 246, 0.08);
      color: #8b5cf6;
    }

    .community-card-icon.orange-light {
      background: rgba(245, 158, 11, 0.08);
      color: #f59e0b;
    }

    .community-card-icon.cyan-light {
      background: rgba(6, 182, 212, 0.08);
      color: #06b6d4;
    }

    .community-card-icon.indigo-light {
      background: rgba(99, 102, 241, 0.08);
      color: #6366f1;
    }

    .community-card-icon.teal-light {
      background: rgba(20, 184, 166, 0.08);
      color: #14b8a6;
    }

    .community-card-icon.pink-light {
      background: rgba(236, 72, 153, 0.08);
      color: #ec4899;
    }

    .community-card-content {
      flex: 1;
      min-width: 0;
    }

    .community-card-title {
      margin: 0 0 6px;
      font-size: 17px;
      font-weight: 600;
      color: var(--text-main);
      line-height: 1.3;
    }

    .community-card-desc {
      margin: 0;
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .community-card-footer {
      margin-top: 12px;
    }

    .community-card-author {
      font-size: 12px;
      color: var(--text-sub);
      font-weight: 500;
    }

    @media (max-width: 1024px) {
      .community-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .community-grid {
        grid-template-columns: 1fr;
      }

      .community-section {
        padding: 44px 0 56px;
      }
    }

    .scene-showcase {
      border-radius: 28px;
      background:
        radial-gradient(circle at 12% 10%, rgba(95, 145, 255, 0.18), transparent 32%),
        radial-gradient(circle at 88% 88%, rgba(139, 185, 255, 0.2), transparent 36%),
        linear-gradient(125deg, #f7fbff 0%, #edf4ff 46%, #e6efff 100%);
      border: 1px solid #d8e7ff;
      padding: 34px 30px;
      box-shadow: 0 16px 38px rgba(37, 99, 235, 0.14);
    }

    .scene-row {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 34px;
      padding: 22px;
      border-radius: 20px;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(245, 250, 255, 0.88));
      border: 1px solid #d6e5ff;
    }

    .scene-row + .scene-row {
      margin-top: 18px;
    }

    .scene-row.reverse {
      grid-template-columns: 0.95fr 1.05fr;
    }

    .scene-media {
      border-radius: 14px;
      border: 1px solid #cfddff;
      overflow: hidden;
      box-shadow: 0 12px 24px rgba(59, 130, 246, 0.16);
      background: #f2f7ff;
    }

    .scene-media img {
      width: 100%;
      height: 100%;
      min-height: 220px;
      object-fit: contain;
      display: block;
    }

    .scene-copy h3 {
      margin: 0 0 10px;
      color: #0f172a;
      font-size: 30px;
      line-height: 1.2;
      letter-spacing: -0.4px;
    }

    .scene-copy p {
      margin: 0;
      color: #334155;
      font-size: 18px;
      line-height: 1.6;
      max-width: 540px;
    }

    footer {
      border-top: 1px solid rgba(191, 219, 254, 0.7);
      background: rgba(255, 255, 255, 0.85);
    }

    .footer-inner {
      min-height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px 20px;
      font-size: 14px;
      color: #334155;
    }

    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.45);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1200;
      padding: 16px;
    }

    .overlay.active {
      display: flex;
    }

    .modal {
      width: min(420px, 100%);
      background: #fff;
      border-radius: 16px;
      border: 1px solid #dbe7ff;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
      padding: 20px;
    }

    .modal-title {
      margin: 0 0 14px;
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
    }

    .modal-input {
      width: 100%;
      border: 1px solid #c8dcff;
      border-radius: 12px;
      padding: 10px 12px;
      font-size: 14px;
      outline: none;
      margin-bottom: 14px;
      -webkit-text-security: disc;
      text-security: disc;
    }

    .modal-input:focus {
      border-color: #7aa8ff;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
    }

    .modal-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .modal-actions .btn {
      flex: 1 1 120px;
      justify-content: center;
      display: inline-flex;
      align-items: center;
      border-radius: 12px;
      padding: 10px 12px;
      font-size: 14px;
      transform: none;
    }

    .skill-modal {
      width: min(720px, calc(100% - 32px));
      max-height: calc(100vh - 64px);
      overflow-y: auto;
      background: #fff;
      border-radius: 20px;
      border: 1px solid #dbe7ff;
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.3);
      padding: 0;
    }

    .skill-modal-header {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 28px 28px 20px;
      border-bottom: 1px solid #f1f5f9;
    }

    .skill-modal-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .skill-modal-title {
      flex: 1;
      min-width: 0;
    }

    .skill-modal-title h3 {
      margin: 0 0 8px;
      font-size: 24px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.3;
    }

    .skill-modal-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: none;
      background: #f1f5f9;
      color: #64748b;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: background 0.2s ease;
      flex-shrink: 0;
    }

    .skill-modal-close:hover {
      background: #e2e8f0;
    }

    .skill-modal-body {
      padding: 28px;
    }

    .skill-modal-desc {
      margin: 0 0 24px;
      font-size: 15px;
      line-height: 1.8;
      color: #334155;
    }

    .skill-modal-source {
      margin: 0 0 28px;
      font-size: 13px;
      color: #94a3b8;
    }

    .skill-modal-section {
      margin-bottom: 24px;
    }

    .skill-modal-section-title {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 16px;
      font-size: 16px;
      font-weight: 600;
      color: #0f172a;
    }

    .skill-modal-section-title::before {
      content: "";
      width: 4px;
      height: 18px;
      background: linear-gradient(135deg, var(--primary-1), var(--primary-2));
      border-radius: 2px;
    }

    .skill-modal-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
    }

    .skill-modal-tab {
      flex: 1;
      padding: 12px 16px;
      border: 1px solid #e2e8f0;
      background: #fff;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      color: #64748b;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .skill-modal-tab.active {
      background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(14, 165, 233, 0.08));
      border-color: #c7d2fe;
      color: #4f46e5;
      font-weight: 600;
    }

    .skill-modal-tab:hover:not(.active) {
      background: #f8fafc;
    }

    .skill-modal-content {
      background: #f8fafc;
      border-radius: 12px;
      padding: 20px;
      font-size: 14px;
      line-height: 1.8;
      color: #475569;
    }

    .skill-modal-content p {
      margin: 0 0 16px;
    }

    .skill-modal-content p:last-child {
      margin-bottom: 0;
    }

    .skill-modal-prompt-preview {
      background: #1e293b;
      border-radius: 10px;
      padding: 16px;
      margin: 12px 0;
    }

    .skill-modal-prompt-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }

    .skill-modal-prompt-title {
      font-size: 11px;
      font-weight: 700;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin: 0;
    }

    .skill-modal-prompt-copy-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 6px;
      color: #e2e8f0;
      font-size: 12px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
    }

    .skill-modal-prompt-copy-btn:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.25);
    }

    .skill-modal-prompt-copy-btn svg {
      width: 14px;
      height: 14px;
    }

    .skill-modal-prompt-content {
      font-family: 'Courier New', monospace;
      font-size: 13px;
      line-height: 1.6;
      color: #e2e8f0;
      white-space: pre-wrap;
      word-break: break-word;
    }

    .skill-modal-code-block {
      background: #1e293b;
      border-radius: 10px;
      padding: 16px;
      margin: 12px 0;
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .skill-modal-code-block.light {
      background: #f1f5f9;
    }

    .skill-modal-code-wrapper {
      flex: 1;
      min-width: 0;
    }

    .skill-modal-code {
      font-family: "Courier New", monospace;
      font-size: 13px;
      color: #e2e8f0;
      word-break: break-all;
      line-height: 1.6;
      white-space: pre-wrap;
      font-weight: 500;
    }

    .skill-modal-code-block.light .skill-modal-code {
      color: #334155;
    }

    .skill-modal-copy-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      font-size: 12px;
      font-weight: 500;
      color: #e2e8f0;
      cursor: pointer;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }

    .skill-modal-code-block.light .skill-modal-copy-btn {
      background: #fff;
      border-color: #e2e8f0;
      color: #475569;
    }

    .skill-modal-copy-btn:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.3);
    }

    .skill-modal-code-block.light .skill-modal-copy-btn:hover {
      background: #f8fafc;
      border-color: #c7d2fe;
      color: #4f46e5;
    }

    .skill-modal-section-subtitle {
      font-size: 13px;
      color: #64748b;
      margin: 16px 0 10px;
      font-weight: 500;
    }

    .skill-modal-note {
      font-size: 12px;
      color: #94a3b8;
      margin-top: 16px;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .skill-modal {
        width: min(100%, calc(100% - 32px));
      }

      .skill-modal-header {
        padding: 20px 20px 16px;
        gap: 16px;
      }

      .skill-modal-icon {
        width: 48px;
        height: 48px;
      }

      .skill-modal-title h3 {
        font-size: 20px;
      }

      .skill-modal-body {
        padding: 20px;
      }

      .skill-modal-tabs {
        flex-direction: column;
      }
    }

    @media (max-width: 1279px) {
      .container {
        width: min(var(--container), calc(100% - 40px));
      }

      .hero {
        padding: 40px;
        gap: 24px;
      }
    }

    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 1fr;
      }

      .scene-row,
      .scene-row.reverse {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .topbar-inner {
        min-height: 64px;
      }

      .container {
        width: calc(100% - 28px);
      }

      .hero-wrap {
        padding-top: 20px;
      }

      .hero {
        border-radius: 18px;
        padding: 26px 20px;
      }

      .hero-title {
        font-size: 38px;
      }

      .hero-sub {
        font-size: 16px;
      }

      .section {
        padding-block: 44px 56px;
      }

      .scene-showcase {
        padding: 18px 14px;
      }

      .scene-row {
        padding: 14px;
        gap: 16px;
      }

      .scene-copy h3 {
        font-size: 24px;
      }

      .scene-copy p {
        font-size: 16px;
      }
    }
