      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      :root {
        --bg: #060d1a;
        --bg-panel: #0b1a2f;
        --bg-card: rgba(14, 24, 40, 0.72);
        --aurora: #38bdf8;
        --aurora-soft: #7dd3fc;
        --cyan-strong: #22d3ee;
        --blue: #2563eb;
        --glass-border: rgba(255, 255, 255, 0.1);
        --glass-border-hover: rgba(56, 189, 248, 0.35);
        --text-primary: rgba(230, 242, 255, 0.97);
        --text-secondary: rgba(170, 205, 235, 0.85);
        --text-muted: rgba(130, 165, 195, 0.7);
        --font: 'DM Sans', 'Avenir Next', 'Segoe UI', sans-serif;
        --font-mono: 'DM Mono', 'SF Mono', monospace;
        --radius-card: 20px;
        --radius-btn: 14px;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: var(--font);
        background: var(--bg);
        color: var(--text-primary);
        min-height: 100vh;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
      }

      /* ── NOISE GRAIN OVERLAY ─────────────────────────────── */
      body::before {
        content: '';
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        opacity: 0.025;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        background-size: 200px 200px;
      }

      /* ── SHARED ──────────────────────────────────────────── */
      .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 28px;
        position: relative;
        z-index: 1;
      }

      /* ── NAVIGATION ──────────────────────────────────────── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 16px 0;
        background: rgba(6, 13, 26, 0.72);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      nav .inner {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .nav-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
      }

      .nav-brand img {
        width: 32px;
        height: 32px;
        border-radius: 8px;
      }

      .nav-brand span {
        font-size: 17px;
        font-weight: 600;
        color: var(--text-primary);
        letter-spacing: -0.3px;
      }

      .nav-link {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-secondary);
        text-decoration: none;
        padding: 7px 14px;
        border-radius: 10px;
        border: 1px solid transparent;
        transition:
          color 180ms,
          border-color 180ms,
          background 180ms;
      }

      .nav-link:hover {
        color: var(--aurora-soft);
        border-color: rgba(56, 189, 248, 0.22);
        background: rgba(56, 189, 248, 0.07);
      }

      .nav-cta {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        padding: 8px 18px;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(56, 189, 248, 0.85), rgba(37, 99, 235, 0.85));
        border: 1px solid rgba(186, 239, 255, 0.22);
        transition:
          box-shadow 200ms,
          transform 120ms;
      }

      .nav-cta:hover {
        box-shadow: 0 6px 20px rgba(34, 211, 238, 0.25);
        transform: translateY(-1px);
      }

      .nav-mobile-doc {
        display: none;
      }

      /* ── HERO ────────────────────────────────────────────── */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 120px 28px 80px;
        position: relative;
        overflow: hidden;
      }

      /* Radial aurora glow */
      .hero::after {
        content: '';
        position: absolute;
        top: 38%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 500px;
        background: radial-gradient(
          ellipse at center,
          rgba(34, 211, 238, 0.12) 0%,
          rgba(37, 99, 235, 0.07) 40%,
          transparent 70%
        );
        pointer-events: none;
        z-index: 0;
      }

      /* Subtle grid */
      .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
        pointer-events: none;
      }

      .hero-content {
        position: relative;
        z-index: 1;
        max-width: 680px;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 5px 14px 5px 8px;
        border-radius: 999px;
        border: 1px solid rgba(56, 189, 248, 0.28);
        background: rgba(56, 189, 248, 0.08);
        font-size: 12px;
        font-weight: 500;
        color: var(--aurora-soft);
        letter-spacing: 0.3px;
        margin-bottom: 28px;
        animation: fadeUp 0.6s ease both;
      }

      .hero-badge-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--cyan-strong);
        box-shadow: 0 0 8px var(--cyan-strong);
        animation: pulse 2s infinite;
      }

      .hero-title-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 18px;
        animation: fadeUp 0.6s 0.1s ease both;
      }

      .hero-icon-wrap {
        position: relative;
        display: inline-block;
        flex-shrink: 0;
      }

      .hero-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: block;
      }

      .hero h1 {
        font-size: clamp(48px, 7vw, 80px);
        font-weight: 700;
        letter-spacing: -2.5px;
        line-height: 1;
        background: linear-gradient(160deg, #ffffff 30%, var(--aurora-soft) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .hero-tagline {
        font-size: clamp(17px, 2.5vw, 20px);
        font-weight: 400;
        color: var(--text-secondary);
        line-height: 1.55;
        margin-bottom: 42px;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        animation: fadeUp 0.6s 0.2s ease both;
      }

      .hero-tagline em {
        font-style: normal;
        color: var(--aurora-soft);
        font-weight: 400;
      }

      .hero-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
        animation: fadeUp 0.6s 0.28s ease both;
      }

      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 14px 26px;
        border-radius: var(--radius-btn);
        font-family: var(--font);
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        background: linear-gradient(135deg, rgba(56, 189, 248, 0.85), rgba(37, 99, 235, 0.85));
        border: 1px solid rgba(186, 239, 255, 0.25);
        box-shadow:
          0 12px 28px rgba(8, 145, 178, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.12);
        transition:
          box-shadow 200ms ease,
          transform 120ms ease,
          background 200ms ease;
        cursor: pointer;
        white-space: nowrap;
      }

      .btn-primary:hover {
        background: linear-gradient(135deg, rgba(77, 200, 248, 0.9), rgba(60, 130, 246, 0.9));
        box-shadow:
          0 16px 36px rgba(34, 211, 238, 0.28),
          inset 0 1px 0 rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
      }

      .btn-primary:active {
        transform: translateY(0);
      }

      .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 14px 26px;
        border-radius: var(--radius-btn);
        font-family: var(--font);
        font-size: 16px;
        font-weight: 600;
        color: rgba(186, 230, 255, 0.88);
        text-decoration: none;
        background: rgba(10, 24, 44, 0.8);
        border: 1px solid rgba(167, 218, 255, 0.2);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        transition:
          background 200ms,
          border-color 200ms,
          transform 120ms,
          box-shadow 200ms;
        cursor: pointer;
        white-space: nowrap;
      }

      .btn-secondary:hover {
        background: rgba(18, 40, 70, 0.9);
        border-color: rgba(167, 218, 255, 0.38);
        box-shadow: 0 6px 22px rgba(56, 189, 248, 0.12);
        transform: translateY(-2px);
      }

      /* SVG icons inline */
      .btn-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
      }

      .hero-note {
        margin-top: 22px;
        font-size: 13px;
        color: var(--text-muted);
        animation: fadeUp 0.6s 0.35s ease both;
      }

      /* ── FEATURES ────────────────────────────────────────── */
      .features {
        padding: 100px 0;
      }

      .section-label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--aurora);
        margin-bottom: 12px;
      }

      .section-title {
        font-size: clamp(30px, 4vw, 44px);
        font-weight: 700;
        letter-spacing: -1.2px;
        line-height: 1.1;
        color: var(--text-primary);
        margin-bottom: 16px;
      }

      .section-sub {
        font-size: 17px;
        font-weight: 400;
        color: var(--text-secondary);
        max-width: 520px;
        line-height: 1.6;
      }

      .section-header {
        margin-bottom: 56px;
      }

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

      .feature-card {
        position: relative;
        padding: 32px 30px;
        border-radius: var(--radius-card);
        border: 1px solid var(--glass-border);
        background:
          linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%),
          rgba(11, 22, 40, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        overflow: hidden;
        transition:
          border-color 250ms,
          box-shadow 250ms,
          transform 200ms;
      }

      .feature-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius-card);
        background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.06) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 300ms;
      }

      .feature-card:hover {
        border-color: var(--glass-border-hover);
        box-shadow:
          0 20px 50px rgba(2, 6, 23, 0.35),
          0 0 0 1px rgba(56, 189, 248, 0.12);
        transform: translateY(-3px);
      }

      .feature-card:hover::before {
        opacity: 1;
      }

      .feature-icon-wrap {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        border: 1px solid rgba(56, 189, 248, 0.22);
        background: rgba(56, 189, 248, 0.09);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
      }

      .feature-icon-wrap svg {
        width: 22px;
        height: 22px;
        color: var(--aurora);
      }

      .feature-card h3 {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: -0.4px;
        color: var(--text-primary);
        margin-bottom: 10px;
      }

      .feature-card p {
        font-size: 15px;
        font-weight: 400;
        color: var(--text-secondary);
        line-height: 1.65;
      }

      /* ── LOCAL STORAGE SECTION ───────────────────────────── */
      .local-storage {
        padding: 100px 0;
        background: var(--bg-panel);
        position: relative;
        overflow: hidden;
      }

      .local-storage::before {
        content: '';
        position: absolute;
        bottom: -200px;
        left: -200px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
        pointer-events: none;
      }

      .local-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
      }

      .local-desc {
        font-size: 16px;
        font-weight: 400;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 32px;
      }

      .local-desc strong {
        color: var(--aurora-soft);
        font-weight: 500;
      }

      .local-pills {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .local-pill {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 18px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: rgba(6, 13, 26, 0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition:
          border-color 250ms,
          background 250ms;
      }

      .local-pill:hover {
        border-color: rgba(56, 189, 248, 0.2);
        background: rgba(10, 22, 40, 0.7);
      }

      .local-pill-icon {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(56, 189, 248, 0.09);
        border: 1px solid rgba(56, 189, 248, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--aurora);
        margin-top: 1px;
      }

      .local-pill-icon svg {
        width: 18px;
        height: 18px;
      }

      .local-pill h4 {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 3px;
        letter-spacing: -0.2px;
      }

      .local-pill p {
        font-size: 13.5px;
        font-weight: 400;
        color: var(--text-secondary);
        line-height: 1.5;
        margin: 0;
      }

      /* Diagram */
      .local-visual {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .local-diagram {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
      }

      .diag-node--center {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 20px 28px;
        border-radius: 18px;
        border: 1px solid rgba(56, 189, 248, 0.35);
        background: linear-gradient(160deg, rgba(56, 189, 248, 0.1), rgba(37, 99, 235, 0.06));
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 0 30px rgba(34, 211, 238, 0.08);
        color: var(--aurora-soft);
        font-size: 15px;
        font-weight: 600;
      }

      .diag-node--center svg {
        width: 28px;
        height: 28px;
        color: var(--aurora);
      }

      .diag-spokes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        position: relative;
      }

      .diag-spokes::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 20px;
        background: linear-gradient(180deg, rgba(56, 189, 248, 0.5), rgba(56, 189, 248, 0.1));
      }

      .diag-node--small {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 14px 12px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(11, 22, 40, 0.7);
        color: var(--text-secondary);
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        transition: border-color 250ms;
      }

      .diag-node--small:hover {
        border-color: rgba(56, 189, 248, 0.22);
      }
      .diag-node--small svg {
        width: 20px;
        height: 20px;
        color: var(--aurora);
      }

      .diag-label {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: var(--text-muted);
        text-align: center;
      }

      /* ── COWORK SECTION ──────────────────────────────────── */
      .cowork {
        padding: 100px 0;
        background: var(--bg-panel);
        position: relative;
        overflow: hidden;
      }

      .cowork::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(34, 211, 238, 0.07) 0%, transparent 70%);
        pointer-events: none;
      }

      .cowork-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
      }

      .cowork-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 5px 14px 5px 10px;
        border-radius: 999px;
        border: 1px solid rgba(34, 211, 238, 0.28);
        background: rgba(34, 211, 238, 0.07);
        font-size: 12px;
        font-weight: 500;
        color: var(--cyan-strong);
        letter-spacing: 0.3px;
        margin-bottom: 22px;
      }

      .cowork-badge svg {
        width: 14px;
        height: 14px;
      }

      .cowork-desc {
        font-size: 16px;
        font-weight: 400;
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 36px;
      }

      .cowork-desc strong {
        color: var(--aurora-soft);
        font-weight: 500;
      }

      .cowork-link {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 14px;
        font-weight: 600;
        color: var(--aurora);
        text-decoration: none;
        transition:
          color 180ms,
          gap 180ms;
      }

      .cowork-link:hover {
        color: var(--aurora-soft);
        gap: 10px;
      }

      /* Steps */
      .steps {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }

      .step {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        padding: 20px 22px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        background: rgba(6, 13, 26, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition:
          border-color 250ms,
          background 250ms;
        position: relative;
        overflow: hidden;
      }

      .step::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--aurora), var(--blue));
        opacity: 0;
        transition: opacity 250ms;
      }

      .step:hover {
        border-color: rgba(56, 189, 248, 0.22);
        background: rgba(10, 20, 38, 0.8);
      }

      .step:hover::after {
        opacity: 1;
      }

      .step-number {
        flex-shrink: 0;
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(37, 99, 235, 0.2));
        border: 1px solid rgba(56, 189, 248, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
        color: var(--aurora-soft);
        font-family: var(--font-mono);
      }

      .step-text h4 {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 4px;
        letter-spacing: -0.2px;
      }

      .step-text p {
        font-size: 14px;
        font-weight: 400;
        color: var(--text-secondary);
        line-height: 1.5;
      }

      /* ── DOWNLOAD STRIP ──────────────────────────────────── */
      .download-strip {
        padding: 90px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .download-strip::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 400px;
        background: radial-gradient(ellipse, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
        pointer-events: none;
      }

      .download-strip h2 {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        letter-spacing: -1.2px;
        margin-bottom: 14px;
      }

      .download-strip p {
        font-size: 16px;
        font-weight: 400;
        color: var(--text-secondary);
        margin-bottom: 40px;
      }

      .download-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
      }

      .version-tag {
        display: inline-block;
        margin-top: 18px;
        font-size: 12px;
        font-family: var(--font-mono);
        color: var(--text-muted);
        letter-spacing: 0.5px;
      }

      /* ── FOOTER ──────────────────────────────────────────── */
      footer {
        padding: 28px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
      }

      .footer-inner {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
      }

      .footer-brand {
        display: flex;
        align-items: center;
        gap: 9px;
        text-decoration: none;
      }

      .footer-brand img {
        width: 24px;
        height: 24px;
        border-radius: 6px;
        opacity: 0.7;
      }

      .footer-copy {
        font-size: 13px;
        color: var(--text-muted);
      }

      .footer-links {
        display: flex;
        align-items: center;
        gap: 20px;
      }

      .footer-links a {
        font-size: 13px;
        color: var(--text-muted);
        text-decoration: none;
        transition: color 180ms;
      }

      .footer-links a:hover {
        color: var(--aurora-soft);
      }

      /* ── WARNING BANNER ──────────────────────────────────── */
      .warning-banner {
        background: linear-gradient(135deg, rgba(234, 179, 8, 0.12), rgba(234, 88, 12, 0.08));
        border: 1px solid rgba(234, 179, 8, 0.3);
        border-radius: 16px;
        padding: 20px 24px;
        margin: 32px 0 0;
        display: flex;
        align-items: flex-start;
        gap: 14px;
        text-align: left;
      }

      .warning-banner-icon {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(234, 179, 8, 0.15);
        border: 1px solid rgba(234, 179, 8, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #facc15;
        margin-top: 2px;
      }

      .warning-banner-icon svg {
        width: 18px;
        height: 18px;
      }

      .warning-banner-body h4 {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: #facc15;
        margin-bottom: 6px;
      }

      .warning-banner-body p {
        font-size: 13.5px;
        font-weight: 400;
        color: rgba(253, 230, 138, 0.9);
        line-height: 1.6;
        margin: 0;
      }

      .warning-banner-body p + p {
        margin-top: 6px;
      }

      /* ── ANIMATIONS ──────────────────────────────────────── */
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(18px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.6;
          transform: scale(0.85);
        }
      }

      /* scroll-triggered fade for cards */
      .fade-in {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.55s ease,
          transform 0.55s ease;
      }

      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ── RESPONSIVE ──────────────────────────────────────── */
      @media (max-width: 768px) {
        .features-grid {
          grid-template-columns: 1fr;
        }
        .cowork-inner {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .local-inner {
          grid-template-columns: 1fr;
          gap: 48px;
        }
        .local-visual {
          display: none;
        }
        .nav-link {
          display: none;
        }
        .nav-mobile-doc {
          display: inline-flex;
        }
        .hero h1 {
          letter-spacing: -1.5px;
        }
        .hero-icon {
          width: 60px;
          height: 60px;
          border-radius: 15px;
        }
        .hero-title-row {
          gap: 14px;
        }
      }

      @media (max-width: 480px) {
        .hero-actions {
          flex-direction: column;
          width: 100%;
        }
        .btn-primary,
        .btn-secondary {
          width: 100%;
          justify-content: center;
        }
      }
