
    :root {
      --bg: #ffffff;
      --surface: #ffffff;
      --soft: #f6f8fb;
      --soft-2: #eef4ff;
      --text: #122033;
      --muted: #607088;
      --line: #e7edf5;
      --brand: #155eef;
      --brand-dark: #0b3aa8;
      --brand-soft: #eaf1ff;
      --accent: #00a676;
      --accent-soft: #e7fff6;
      --warning: #ffb020;
      --danger: #ef4444;
      --shadow: 0 22px 55px rgba(18, 32, 51, 0.10);
      --shadow-soft: 0 12px 32px rgba(18, 32, 51, 0.08);
      --radius: 24px;
      --radius-sm: 16px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(21, 94, 239, 0.10), transparent 34rem),
        radial-gradient(circle at 86% 10%, rgba(0, 166, 118, 0.10), transparent 28rem),
        var(--bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

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

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin-inline: auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.84);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(231, 237, 245, 0.85);
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -0.04em;
      font-size: 1.28rem;
    }

    .brand-mark{
      width: 242px;
    }

    .brand-mark svg {
      width: 25px;
      height: 25px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 650;
    }

    .nav-links a {
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--brand);
    }

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

    .menu-btn {
      display: none;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--text);
      border-radius: 14px;
      width: 44px;
      height: 44px;
      cursor: pointer;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
      font-size: 0.95rem;
      white-space: nowrap;
    }

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

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--brand), var(--brand-dark));
      box-shadow: 0 16px 30px rgba(21, 94, 239, 0.26);
    }

    .btn-primary:hover {
      box-shadow: 0 20px 38px rgba(21, 94, 239, 0.32);
    }

    .btn-secondary {
      color: var(--brand);
      background: var(--brand-soft);
      border-color: #d8e6ff;
    }

    .btn-ghost {
      color: var(--text);
      background: #fff;
      border-color: var(--line);
    }

    .hero {
      padding: 86px 0 56px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 54px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 18px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: #057a58;
      font-size: 0.88rem;
      font-weight: 850;
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(0, 166, 118, 0.12);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin-bottom: 20px;
      font-size: clamp(2.6rem, 6vw, 5.8rem);
      line-height: 0.95;
      letter-spacing: -0.075em;
    }

    .gradient-text {
      background: linear-gradient(135deg, var(--brand), var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-copy {
      max-width: 645px;
      margin-bottom: 30px;
      color: var(--muted);
      font-size: clamp(1.05rem, 2vw, 1.28rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 30px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .trust-row span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .check-dot {
      width: 19px;
      height: 19px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: 0.78rem;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .hero-visual {
      position: relative;
      min-height: 580px;
    }

    .orb {
      position: absolute;
      inset: 8% 0 auto auto;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(21, 94, 239, 0.20), rgba(0, 166, 118, 0.16));
      filter: blur(6px);
      opacity: 0.7;
    }

    .dashboard-card {
      position: relative;
      margin-left: auto;
      max-width: 520px;
      border: 1px solid rgba(231, 237, 245, 0.96);
      background: rgba(255, 255, 255, 0.92);
      border-radius: 34px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .dashboard-top {
      min-height: 62px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
      background: linear-gradient(180deg, #fff, #f9fbff);
    }

    .window-dots {
      display: flex;
      gap: 7px;
    }

    .window-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #d7dfeb;
    }

    .live-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      padding: 7px 11px;
      color: #057a58;
      background: var(--accent-soft);
      font-size: 0.78rem;
      font-weight: 900;
    }

    .pulse {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      position: relative;
    }

    .pulse::after {
      content: "";
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 1px solid rgba(0, 166, 118, 0.55);
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      to {
        transform: scale(1.8);
        opacity: 0;
      }
    }

    .dashboard-body {
      padding: 22px;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 18px;
    }

    .metric-card {
      padding: 15px;
      border-radius: 18px;
      background: var(--soft);
      border: 1px solid var(--line);
    }

    .metric-card strong {
      display: block;
      margin-bottom: 2px;
      font-size: clamp(1.25rem, 2vw, 1.7rem);
      letter-spacing: -0.05em;
    }

    .metric-card small {
      color: var(--muted);
      font-weight: 750;
    }

    .chart-panel {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fff;
      margin-bottom: 16px;
    }

    .chart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 16px;
    }

    .chart-header h3 {
      margin: 0;
      font-size: 1rem;
    }

    .bar-list {
      display: grid;
      gap: 13px;
    }

    .bar-row {
      display: grid;
      grid-template-columns: 92px 1fr 44px;
      align-items: center;
      gap: 12px;
      font-size: 0.85rem;
      font-weight: 800;
      color: var(--muted);
    }

    .bar-track {
      height: 11px;
      border-radius: 999px;
      background: #edf2f9;
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      width: var(--w);
      border-radius: inherit;
      background: linear-gradient(90deg, var(--brand), var(--accent));
    }

    .activity-feed {
      display: grid;
      gap: 10px;
    }

    .feed-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 12px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.88rem;
      font-weight: 650;
    }

    .feed-icon {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      background: var(--brand-soft);
      color: var(--brand);
      flex: 0 0 auto;
      font-weight: 900;
    }

    section {
      padding: 74px 0;
    }

    .section-heading {
      max-width: 780px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .section-heading.left {
      margin-inline: 0;
      text-align: left;
    }

    .kicker {
      display: inline-flex;
      margin-bottom: 12px;
      color: var(--brand);
      font-size: 0.82rem;
      font-weight: 950;
      letter-spacing: 0.11em;
      text-transform: uppercase;
    }

    h2 {
      margin-bottom: 15px;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1.02;
      letter-spacing: -0.055em;
    }

    .lead {
      color: var(--muted);
      font-size: clamp(1rem, 1.7vw, 1.16rem);
    }

    .logo-strip {
      padding: 26px 0 68px;
    }

    .logo-panel {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.78);
      box-shadow: var(--shadow-soft);
    }

    .logo-pill {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-align: center;
      border-radius: 18px;
      background: var(--soft);
      color: var(--muted);
      font-weight: 850;
      padding: 16px;
    }

    .problem-solution {
      background: linear-gradient(180deg, rgba(246, 248, 251, 0.70), #fff);
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .panel {
      padding: clamp(22px, 4vw, 36px);
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .panel.problem {
      background:
        linear-gradient(135deg, rgba(239, 68, 68, 0.06), transparent 45%),
        #fff;
    }

    .panel.solution {
      background:
        linear-gradient(135deg, rgba(21, 94, 239, 0.08), transparent 45%),
        #fff;
    }

    .panel h3 {
      margin-bottom: 16px;
      font-size: 1.55rem;
      letter-spacing: -0.035em;
    }

    .clean-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .clean-list li {
      display: flex;
      gap: 11px;
      align-items: flex-start;
      color: var(--muted);
      font-weight: 650;
    }

    .x-dot,
    .ok-dot {
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      flex: 0 0 auto;
      font-size: 0.82rem;
      font-weight: 900;
      margin-top: 1px;
    }

    .x-dot {
      background: #fff0f0;
      color: var(--danger);
    }

    .ok-dot {
      background: var(--accent-soft);
      color: var(--accent);
    }

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

    .feature-card {
      position: relative;
      min-height: 220px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    /* Decorative orb behind feature cards */
    /*
    .feature-card::after {
      content: "";
      position: absolute;
      inset: auto -34px -44px auto;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: var(--brand-soft);
    }
    /* Decorative orb behind feature cards */

    .icon-box {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 17px;
      background: linear-gradient(135deg, var(--brand-soft), var(--accent-soft));
      color: var(--brand);
    }

    .icon-box svg {
      width: 25px;
      height: 25px;
    }

    .feature-card h3 {
      margin-bottom: 9px;
      font-size: 1.18rem;
      letter-spacing: -0.02em;
    }

    .feature-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-weight: 620;
    }

    .journey {
      background: var(--soft);
    }

    .tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 26px;
    }

    .tab-btn {
      border: 1px solid var(--line);
      background: #fff;
      color: var(--muted);
      padding: 12px 17px;
      border-radius: 999px;
      font-weight: 900;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .tab-btn.active,
    .tab-btn:hover {
      color: #fff;
      border-color: var(--brand);
      background: var(--brand);
      box-shadow: 0 12px 24px rgba(21, 94, 239, 0.18);
    }

    .phase-panel {
      display: none;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 30px;
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .phase-panel.active {
      display: grid;
    }

    .phase-highlight {
      padding: clamp(22px, 4vw, 34px);
      border-radius: 24px;
      background: linear-gradient(135deg, var(--brand), var(--brand-dark));
      color: #fff;
    }

    .phase-highlight h3 {
      margin-bottom: 12px;
      font-size: clamp(1.7rem, 4vw, 2.7rem);
      line-height: 1.05;
      letter-spacing: -0.05em;
    }

    .phase-highlight p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-weight: 650;
    }

    .phase-list {
      display: grid;
      gap: 14px;
      padding: 8px;
    }

    .phase-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 17px;
      border: 1px solid var(--line);
      border-radius: 19px;
      background: #fff;
    }

    .phase-item strong {
      display: block;
      margin-bottom: 2px;
      letter-spacing: -0.02em;
    }

    .phase-item span {
      color: var(--muted);
      font-weight: 620;
      font-size: 0.94rem;
    }

    .roles-layout {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 28px;
      align-items: start;
    }

    .roles-table-wrap {
      overflow-x: auto;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 620px;
    }

    th,
    td {
      padding: 18px;
      text-align: left;
      border-bottom: 1px solid var(--line);
      vertical-align: top;
    }

    th {
      background: var(--soft);
      color: var(--text);
      font-size: 0.84rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    td {
      color: var(--muted);
      font-weight: 650;
    }

    td:first-child {
      color: var(--text);
      font-weight: 900;
    }

    tr:last-child td {
      border-bottom: 0;
    }

    .election-day {
      position: relative;
      overflow: hidden;
    }

    .election-day::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(21, 94, 239, 0.06), rgba(0, 166, 118, 0.05));
      pointer-events: none;
    }

    .war-room {
      position: relative;
      display: grid;
      grid-template-columns: 1.03fr 0.97fr;
      gap: 28px;
      align-items: center;
    }

    .war-card {
      padding: clamp(22px, 4vw, 34px);
      border: 1px solid var(--line);
      border-radius: 30px;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .status-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 13px;
      margin-top: 22px;
    }

    .status-tile {
      padding: 18px;
      border-radius: 20px;
      background: var(--soft);
      border: 1px solid var(--line);
    }

    .status-tile strong {
      display: block;
      margin-bottom: 4px;
      font-size: 1.45rem;
      letter-spacing: -0.04em;
    }

    .status-tile span {
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 750;
    }

    .map-mock {
      position: relative;
      min-height: 470px;
      padding: 20px;
      border-radius: 34px;
      border: 1px solid var(--line);
      background:
        linear-gradient(90deg, rgba(231, 237, 245, 0.5) 1px, transparent 1px),
        linear-gradient(rgba(231, 237, 245, 0.5) 1px, transparent 1px),
        #fff;
      background-size: 44px 44px;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .pin {
      position: absolute;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 0 8px rgba(21, 94, 239, 0.12), 0 14px 24px rgba(21, 94, 239, 0.18);
      animation: float 3.5s ease-in-out infinite;
    }

    .pin.green {
      background: var(--accent);
      box-shadow: 0 0 0 8px rgba(0, 166, 118, 0.12), 0 14px 24px rgba(0, 166, 118, 0.16);
    }

    .pin.orange {
      background: var(--warning);
      box-shadow: 0 0 0 8px rgba(255, 176, 32, 0.14), 0 14px 24px rgba(255, 176, 32, 0.18);
    }

    @keyframes float {
      50% {
        transform: translateY(-8px);
      }
    }

    .map-panel {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow-soft);
    }

    .map-panel h3 {
      margin-bottom: 10px;
      font-size: 1.05rem;
    }

    .legend {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      color: var(--muted);
      font-weight: 800;
      font-size: 0.83rem;
    }

    .legend span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .legend i {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
      background: var(--brand);
    }

    .legend .g i {
      background: var(--accent);
    }

    .legend .o i {
      background: var(--warning);
    }

    .advantage-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 24px;
      align-items: stretch;
    }

    .quote-card {
      padding: clamp(24px, 4vw, 40px);
      border-radius: 30px;
      background: linear-gradient(135deg, #10284f, #155eef);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .quote-card h2 {
      color: #fff;
      margin-bottom: 18px;
    }

    .quote-card p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.08rem;
      font-weight: 650;
    }

    .comparison {
      display: grid;
      gap: 14px;
    }

    .comparison-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .comparison-box {
      padding: 22px;
      border-radius: 22px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .comparison-box h3 {
      margin-bottom: 10px;
    }

    .comparison-box p {
      margin: 0;
      color: var(--muted);
      font-weight: 650;
    }

    .audience {
      background: var(--soft);
    }

    .ideal-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      max-width: 970px;
      margin-inline: auto;
    }

    .ideal-item {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 82px;
      padding: 18px;
      border-radius: 20px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 8px 18px rgba(18, 32, 51, 0.05);
      font-weight: 850;
    }

    .cta {
      padding: 96px 0;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 0.78fr;
      gap: 30px;
      align-items: center;
      padding: clamp(28px, 5vw, 54px);
      border-radius: 36px;
      background:
        radial-gradient(circle at top right, rgba(0, 166, 118, 0.32), transparent 26rem),
        linear-gradient(135deg, #0e2550, #155eef);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -120px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.09);
    }

    .cta-panel > * {
      position: relative;
      z-index: 1;
    }

    .cta-panel h2 {
      color: #fff;
      margin-bottom: 14px;
    }

    .cta-panel p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 1.1rem;
      font-weight: 650;
    }

    .demo-card {
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, 0.20);
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
    }

    .demo-card label {
      display: block;
      margin-bottom: 8px;
      color: rgba(255, 255, 255, 0.86);
      font-weight: 850;
      font-size: 0.88rem;
    }

    .demo-card input,
    .demo-card textarea {
      width: 100%;
      margin-bottom: 12px;
      padding: 13px 14px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--text);
      font: inherit;
      outline: none;
    }

    .demo-card textarea {
      min-height: 94px;
      resize: vertical;
    }

    .demo-card .btn {
      width: 100%;
      background: #fff;
      color: var(--brand);
    }

    .form-note {
      min-height: 22px;
      margin: 10px 0 0;
      color: rgba(255, 255, 255, 0.84);
      font-size: 0.9rem;
      font-weight: 750;
    }

    footer {
      padding: 34px 0 48px;
      border-top: 1px solid var(--line);
      background: #fff;
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-weight: 700;
    }

    .footer-row strong {
      color: var(--text);
    }

    .footer-row img {
      width: 120px;
    }


    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1040px) {
      .hero-grid,
      .war-room,
      .advantage-grid,
      .roles-layout,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 62px;
      }

      .hero-visual {
        min-height: auto;
      }

      .dashboard-card {
        margin-inline: auto;
      }

      .cards-grid,
      .ideal-list {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 820px) {
      .nav-links {
        position: fixed;
        inset: 76px 18px auto 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: #fff;
        box-shadow: var(--shadow);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a {
        padding: 14px 12px;
        border-radius: 14px;
      }

      .nav-links a:hover {
        background: var(--soft);
      }

      .menu-btn {
        display: inline-grid;
        place-items: center;
      }

      .nav-actions .btn {
        display: none;
      }

      .split,
      .phase-panel {
        grid-template-columns: 1fr;
      }

      .metric-grid,
      .status-grid {
        grid-template-columns: 1fr;
      }

      .logo-panel {
        grid-template-columns: repeat(2, 1fr);
      }

      .comparison-row {
        grid-template-columns: 1fr;
      }
    }

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

      section {
        padding: 56px 0;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .cards-grid,
      .ideal-list,
      .logo-panel {
        grid-template-columns: 1fr;
      }

      .dashboard-body {
        padding: 16px;
      }

      .bar-row {
        grid-template-columns: 76px 1fr 38px;
        gap: 9px;
      }

      .map-mock {
        min-height: 390px;
      }

      .footer-row {
        flex-direction: column;
        align-items: flex-start;
      }
    }