    .hero {
      position: relative;
      min-height: calc(100vh - 70px);
      display: grid;
      align-items: stretch;
      overflow: hidden;
      background: #dff1fb;
    }

    .hero-media {
      position: absolute;
      inset: 0;
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 42%, rgba(255, 255, 255, 0.42) 64%, rgba(255, 255, 255, 0.04) 100%);
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      padding: 82px 0 62px;
      display: grid;
      grid-template-columns: minmax(0, 590px) minmax(300px, 1fr);
      align-items: center;
      gap: 40px;
    }

    .eyebrow {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      padding: 8px 13px;
      color: #fff;
      background: rgba(8, 119, 216, 0.94);
      font-size: 14px;
      font-weight: 850;
      box-shadow: 0 12px 26px rgba(8, 119, 216, 0.2);
    }

    .eyebrow svg,
    .cta-icon {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

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

    .hero h1 {
      margin-top: 26px;
      font-size: clamp(42px, 5.2vw, 68px);
      line-height: 1.03;
      font-weight: 950;
    }

    .accent-blue {
      color: var(--blue);
    }

    .accent-green {
      color: var(--green);
    }

    .accent-coral {
      color: var(--coral);
    }

    .accent-red {
      color: var(--red);
    }

    .hero-copy {
      max-width: 510px;
      margin-top: 24px;
      color: #344452;
      font-size: clamp(17px, 2vw, 21px);
      line-height: 1.72;
      font-weight: 650;
    }

    .hero-ctas {
      margin-top: 30px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-proof {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 540px;
      border: 1px solid rgba(255, 255, 255, 0.68);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.78);
      box-shadow: var(--soft-shadow);
    }

    .proof-item {
      min-width: 0;
      padding: 16px 15px;
      border-right: 1px solid rgba(19, 32, 45, 0.1);
    }

    .proof-item:last-child {
      border-right: 0;
    }

    .proof-number {
      display: block;
      color: var(--ink);
      font-size: 22px;
      line-height: 1;
      font-weight: 950;
    }

    .proof-label {
      display: block;
      margin-top: 7px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.35;
      font-weight: 750;
    }

    .hero-spacer {
      min-height: 420px;
    }

    .section {
      position: relative;
      padding: 92px 0;
      background: var(--paper);
    }

    .section:nth-of-type(odd) {
      background: #f8fbf7;
    }

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

    .section-heading {
      max-width: 760px;
    }

    .section-kicker {
      color: var(--blue);
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .section h2 {
      margin-top: 12px;
      font-size: clamp(32px, 4.4vw, 58px);
      line-height: 1.12;
      font-weight: 950;
    }

    .section-lead {
      max-width: 700px;
      margin-top: 18px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.75;
      font-weight: 600;
    }

    .story-grid {
      margin-top: 44px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .story-card {
      min-width: 0;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 12px 34px rgba(34, 59, 72, 0.06);
    }

    .story-icon {
      width: 46px;
      height: 46px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      color: #fff;
    }

    .story-icon svg {
      width: 24px;
      height: 24px;
    }

    .story-card h3 {
      font-size: 21px;
      line-height: 1.35;
      font-weight: 950;
    }

    .story-card p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.72;
      font-weight: 600;
    }

    .feature-track {
      margin-top: 48px;
      display: grid;
      gap: 28px;
    }

    .feature-row {
      display: grid;
      grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
      gap: 46px;
      align-items: center;
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--soft-shadow);
    }

    .feature-row:nth-child(even) {
      grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.86fr);
    }

    .feature-row:nth-child(even) .feature-copy {
      order: 2;
    }

    .feature-row:nth-child(even) .phone-stage {
      order: 1;
    }

    .feature-badge {
      width: fit-content;
      border-radius: 999px;
      padding: 7px 11px;
      color: #fff;
      font-size: 13px;
      font-weight: 900;
    }

    .feature-copy h3 {
      margin-top: 18px;
      font-size: clamp(28px, 3vw, 44px);
      line-height: 1.13;
      font-weight: 950;
    }

    .feature-copy p {
      margin-top: 17px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.78;
      font-weight: 600;
    }

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

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: #314251;
      font-size: 15px;
      line-height: 1.55;
      font-weight: 750;
    }

    .check {
      width: 19px;
      height: 19px;
      flex: 0 0 auto;
      margin-top: 2px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--green);
    }

    .check svg {
      width: 13px;
      height: 13px;
    }

    .phone-stage {
      min-height: 550px;
      border-radius: var(--radius);
      display: grid;
      place-items: center;
      padding: 26px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(225, 246, 235, 0.9), rgba(231, 244, 255, 0.88));
    }

    .phone-stage.warm {
      background: linear-gradient(135deg, rgba(255, 242, 217, 0.9), rgba(231, 248, 238, 0.88));
    }

    .phone-stage.red {
      background: linear-gradient(135deg, rgba(255, 231, 227, 0.96), rgba(255, 248, 232, 0.88));
    }

    .phone-shot {
      width: min(320px, 90%);
      border-radius: 28px;
      box-shadow: 0 28px 60px rgba(29, 52, 63, 0.2);
    }

    .records-showcase {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
      gap: 48px;
      align-items: center;
    }

    .records-showcase .section-heading {
      max-width: 640px;
    }

    .records-visual {
      min-height: 560px;
      border-radius: var(--radius);
      display: grid;
      place-items: center;
      padding: 34px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(221, 244, 255, 0.96), rgba(235, 250, 237, 0.9));
      box-shadow: var(--soft-shadow);
    }

    .final-cta {
      padding: 100px 0;
      color: #fff;
      background: #142333;
    }

    .final-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
      gap: 44px;
      align-items: center;
    }

    .final-cta h2 {
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1.1;
      font-weight: 950;
    }

    .final-cta p {
      margin-top: 18px;
      max-width: 610px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 18px;
      line-height: 1.75;
      font-weight: 600;
    }

    .download-box {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 32px;
      max-width: 430px;
    }

    .store-button {
      min-height: 58px;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.18);
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      font-weight: 900;
    }

    .store-button svg {
      width: 25px;
      height: 25px;
      flex: 0 0 auto;
    }

    .store-button small {
      display: block;
      margin-bottom: 2px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 11px;
      font-weight: 800;
    }

    .final-image {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
    }

    .final-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .site-footer {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 28px 0;
      color: rgba(255, 255, 255, 0.62);
      background: #142333;
    }

    .footer-inner {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      font-size: 13px;
      font-weight: 650;
    }

    [data-i18n] {
      transition: opacity 0.15s ease;
    }

    .is-switching [data-i18n] {
      opacity: 0;
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero-media::after {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.34) 100%);
      }

      .hero-inner,
      .final-inner {
        grid-template-columns: 1fr;
      }

      .hero-inner {
        align-items: start;
        padding-top: 60px;
      }

      .hero-spacer {
        min-height: 260px;
      }

      .story-grid {
        grid-template-columns: 1fr;
      }

      .feature-row,
      .feature-row:nth-child(even) {
        grid-template-columns: 1fr;
        padding: 24px;
      }

      .records-showcase {
        grid-template-columns: 1fr;
      }

      .feature-row:nth-child(even) .feature-copy,
      .feature-row:nth-child(even) .phone-stage {
        order: initial;
      }

      .phone-stage,
      .records-visual {
        min-height: auto;
      }

    }

    @media (max-width: 640px) {
      .nav {
        width: min(100% - 28px, var(--max));
        min-height: 62px;
      }

      .brand span {
        font-size: 15px;
      }

      .header-cta {
        display: none;
      }

      .hero-inner,
      .section-inner,
      .final-inner,
      .footer-inner {
        width: min(100% - 28px, var(--max));
      }

      .hero {
        min-height: auto;
      }

      .hero-inner {
        padding: 46px 0 38px;
      }

      .hero h1 {
        font-size: clamp(38px, 13vw, 58px);
      }

      .hero-copy,
      .section-lead,
      .feature-copy p,
      .final-cta p {
        font-size: 16px;
      }

      .hero-proof {
        grid-template-columns: 1fr;
      }

      .proof-item {
        border-right: 0;
        border-bottom: 1px solid rgba(19, 32, 45, 0.1);
      }

      .proof-item:last-child {
        border-bottom: 0;
      }

      .section,
      .final-cta {
        padding: 64px 0;
      }

      .story-card,
      .feature-row {
        padding: 20px;
      }

      .phone-stage,
      .records-visual {
        padding: 18px;
      }

      .phone-shot {
        width: min(290px, 96%);
      }

      .download-box {
        grid-template-columns: 1fr;
      }

      .footer-inner {
        flex-direction: column;
      }
    }
