    :root {
      --bg: #e3e7ef;
      --bg-elev: #f2f4f9;
      --header-blur: rgba(246, 248, 252, .85);
      --text: #0f172a;
      --muted: #4f596b;
      --border: rgba(15, 23, 42, .10);
      --primary: #18b368;
      --primary-600: #149958;
      --ring: rgba(24, 179, 104, .20);
      --btn-bg: #f8faff;
      --btn-border: rgba(15, 23, 42, .14);
      --btn-hover: #eef3ff;
      --btn-text: #0f172a;
      --success: #16b86a;
      --card-gradient: linear-gradient(180deg, #f9fbff 0%, #eef2f9 100%);
      --shadow: 0 12px 28px rgba(2, 8, 23, .08), 0 2px 6px rgba(2, 8, 23, .05);
    }

    html[data-theme="dark"] {
      --bg: #0b1220;
      --bg-elev: #0f172a;
      --header-blur: rgba(11, 18, 32, .60);
      --text: #e6ecff;
      --muted: #9aa7c7;
      --border: rgba(255, 255, 255, .08);
      --primary: #1cc975;
      --primary-600: #18b368;
      --ring: rgba(28, 201, 117, .24);
      --btn-bg: #101a2f;
      --btn-border: rgba(255, 255, 255, .08);
      --btn-hover: #13203a;
      --btn-text: #e6ecff;
      --success: #22c55e;
      --card-gradient: linear-gradient(180deg, #0f172a 0%, #111d33 100%);
      --shadow: 0 14px 30px rgba(0, 0, 0, .35), 0 2px 6px rgba(0, 0, 0, .25);
    }
@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/inter/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/inter/Inter-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/inter/Inter-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/inter/Inter-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("/assets/fonts/inter/Inter-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
* {
      box-sizing: border-box;
    }

    html,
    body {
      height: 100%;
    }

    body {
      margin: 0;
      color: var(--text);
      background: var(--bg);
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      line-height: 1.4;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .wrap {
      min-height: 100%;
      display: flex;
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 60;
      background: var(--header-blur);
      border-bottom: 1px solid var(--border);
      backdrop-filter: saturate(140%) blur(10px);
    }

    .nav {
      height: 88px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 18px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }

    .logo .logo-img {
      width: auto;
      height: 48px;
      max-width: none;
      display: none;
      image-rendering: auto;
      image-rendering: -webkit-optimize-contrast;
      transform: translateZ(0);
      backface-visibility: hidden;
    }

    html[data-theme="light"] .logo .logo-light,
    html[data-theme="dark"] .logo .logo-dark {
      display: block;
    }

    .header-menu {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
    }

    .header-menu a {
      padding: 9px 0;
      color: var(--muted);
      border-radius: 10px;
      font-size: 14px;
      font-weight: 650;
      text-decoration: none;
      transition: color .18s ease;
    }

    .header-menu a:hover {
      color: var(--text);
    }

    .status-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .status-link::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 12px rgba(28, 201, 117, .65);
    }

    .nav-right {
      display: inline-flex;
      align-items: center;
      justify-self: end;
      gap: 10px;
    }

    .header-login {
      padding: 9px 4px;
      color: var(--text);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
    }

    .header-cta {
      padding: 10px 14px;
      color: #062313;
      background: var(--primary);
      border: 1px solid var(--primary);
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(24, 179, 104, .18), inset 0 1px 0 rgba(255, 255, 255, .18);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .1px;
      text-decoration: none;
      transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .08s ease;
    }

    .header-cta:hover {
      background: var(--primary);
      border-color: var(--primary);
      box-shadow: 0 6px 16px rgba(24, 179, 104, .22), inset 0 1px 0 rgba(255, 255, 255, .18);
    }

    .header-cta:active {
      transform: translateY(1px);
    }

    .menu-button,
    .toggle {
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
      background: var(--btn-bg);
      border: 1px solid var(--btn-border);
      border-radius: 10px;
      box-shadow: var(--shadow);
      cursor: pointer;
      touch-action: manipulation;
      transition: background .2s, border-color .2s, transform .08s;
    }

    .menu-button {
      display: none;
      gap: 8px;
      padding: 0 12px;
      font-weight: 800;
    }

    .menu-button svg,
    .toggle svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .toggle {
      width: 38px;
      flex-shrink: 0;
    }

    .toggle:hover,
    .menu-button:hover {
      background: var(--btn-hover);
    }

    .toggle:active,
    .menu-button:active {
      transform: translateY(1px);
    }

    .drawer,
    .backdrop {
      display: none;
    }

    .btn {
      appearance: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 14px;
      color: var(--btn-text);
      background: var(--btn-bg);
      border: 1px solid var(--btn-border);
      border-radius: 12px;
      box-shadow: var(--shadow);
      font-weight: 600;
      letter-spacing: .1px;
      text-decoration: none;
      cursor: pointer;
      touch-action: manipulation;
      transition: background .2s, border-color .2s, transform .08s;
    }

    .btn:hover {
      background: var(--btn-hover);
    }

    .btn:active {
      transform: translateY(1px);
    }

    .btn-primary {
      color: #062313;
      background: var(--primary);
      border-color: var(--primary);
      box-shadow: 0 4px 12px rgba(24, 179, 104, .18), inset 0 1px 0 rgba(255, 255, 255, .18);
    }

    .btn-primary:hover {
      background: var(--primary-600);
      border-color: var(--primary-600);
    }

    .hero {
      position: relative;
      padding: 58px 0 24px;
      overflow: hidden;
    }

    .hero-shell {
      position: relative;
      display: block;
    }

.hero-copy {
  max-width: 1200px;
}

.hero h1 {
  max-width: 1200px;
  margin: 0;
  font-size: clamp(34px,4.4vw,58px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: -.035em;
}

.hero h1 span {
  display: block;
  color: var(--primary);
}

.hero p.sub {
  max-width: 1200px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(15px,1.25vw,18px);
  line-height: 1.4;
}

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

    .preview-strip {
      padding: 8px 0 30px;
    }

    .preview-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      justify-content: center;
    }

    .preview-card {
      overflow: hidden;
      background: var(--card-gradient);
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: var(--shadow);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    html[data-theme="light"] .preview-card {
      background: var(--bg);
    }

    .preview-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(2, 8, 23, .12);
    }

    .preview-figure {
      height: 100%;
      margin: 0;
      display: grid;
      grid-template-rows: 1fr;
    }

    .preview-thumb {
      position: relative;
      display: block;
      color: inherit;
      border: 0;
      border-radius: 0;
      outline: none;
      text-decoration: none;
      cursor: pointer;
    }

    .preview-thumb::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      background: radial-gradient(100% 100% at 50% 0%, rgba(255, 255, 255, .10), rgba(0, 0, 0, 0) 65%);
      transition: opacity .2s ease;
    }

    html[data-theme="dark"] .preview-thumb::after {
      background: radial-gradient(100% 100% at 50% 0%, rgba(78, 130, 255, .14), rgba(0, 0, 0, 0) 65%);
    }

    .preview-card:hover .preview-thumb::after {
      opacity: 1;
    }

    .preview-thumb:focus-visible {
      margin: 10px;
      border-radius: 14px;
      outline: 2px solid var(--ring);
      outline-offset: 3px;
    }

    .preview-media {
      aspect-ratio: 3 / 2;
      overflow: hidden;
      background: #0f172a;
      border-bottom: 1px solid var(--border);
    }

    html[data-theme="light"] .preview-media,
    html[data-theme="light"] .preview-media img {
      background: var(--bg);
    }

    .preview-media picture,
    .preview-media img {
      width: 100%;
      height: 100%;
      display: block;
      background: inherit;
    }

    .preview-media img {
      object-fit: cover;
      transform: translateZ(0);
    }

    html[data-theme="light"] .preview-media source[data-theme="dark"],
    html[data-theme="dark"] .preview-media source[data-theme="light"] {
      display: none;
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 999;
      display: block;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .18s ease, visibility 0s linear .18s;
    }

    .lightbox.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity .18s ease, visibility 0s;
    }

    .lb-backdrop {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: block;
      background: rgba(2, 8, 23, .72);
      backdrop-filter: blur(10px) saturate(140%);
      -webkit-backdrop-filter: blur(10px) saturate(140%);
      text-decoration: none;
    }

    html[data-theme="dark"] .lb-backdrop {
      background: rgba(0, 0, 0, .72);
    }

    .lb-shell {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      display: grid;
      align-items: center;
      justify-items: center;
      padding: clamp(14px, 3vw, 28px);
      pointer-events: none;
    }

    .lb-panel {
      position: relative;
      width: min(1100px, 96vw);
      max-height: min(88vh, 920px);
      overflow: hidden;
      display: grid;
      grid-template-rows: 1fr auto;
      background: var(--card-gradient);
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: var(--shadow);
      pointer-events: auto;
    }

    .lb-media {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(10px, 2vw, 16px);
      background: rgba(0, 0, 0, .04);
      touch-action: pan-y;
    }

    html[data-theme="dark"] .lb-media {
      background: rgba(255, 255, 255, .04);
    }

    .lb-media picture,
    .lb-media img {
      width: 100%;
      height: 100%;
      max-height: calc(88vh - 64px);
      display: block;
    }

    .lb-media img {
      object-fit: contain;
      background: var(--bg-elev);
      border: 1px solid var(--border);
      border-radius: 14px;
      opacity: 1;
      transition: opacity .12s ease;
      will-change: opacity;
    }

    .lb-media img.is-swapping {
      opacity: 0;
    }

    .lb-caption {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      padding: 12px 14px;
      border-top: 1px solid var(--border);
    }

    .lb-title {
      min-width: 0;
      color: var(--text);
      font-size: 13.5px;
      font-weight: 800;
      letter-spacing: .1px;
    }

    .lb-title span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 12.75px;
      font-weight: 600;
      letter-spacing: 0;
    }

    .lb-close,
    .lb-nav {
      position: absolute;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--btn-text);
      background: var(--btn-bg);
      border: 1px solid var(--btn-border);
      box-shadow: var(--shadow);
      text-decoration: none;
      user-select: none;
      cursor: pointer;
      transition: background .2s, transform .08s, border-color .2s;
    }

    .lb-close {
      top: 10px;
      right: 10px;
      width: 38px;
      height: 38px;
      border-radius: 999px;
    }

    .lb-nav {
      top: 50%;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      transform: translateY(-50%);
    }

    .lb-prev {
      left: 10px;
    }

    .lb-next {
      right: 10px;
    }

    .lb-close:hover,
    .lb-nav:hover {
      background: var(--btn-hover);
    }

    .lb-close:active {
      transform: translateY(1px);
    }

    .lb-nav:active {
      transform: translateY(-50%) translateY(1px);
    }

    .lb-close:focus-visible,
    .lb-nav:focus-visible {
      outline: 2px solid var(--ring);
      outline-offset: 2px;
    }

    .lb-close svg,
    .lb-nav svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      margin: 0 0 24px;
    }

    .card {
      padding: 22px 22px 16px;
      background: var(--card-gradient);
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: var(--shadow);
    }

    .card h3 {
      margin: 0 0 4px;
      font-size: 18px;
      font-weight: 800;
    }

    .card .sub {
      margin: 0 0 10px;
      color: var(--muted);
      font-size: 13.5px;
    }

    .card .list a {
      color: inherit;
      text-decoration: none;
    }

    .card .list a:hover {
      text-decoration: underline;
    }

    .list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 18px;
    }

    .li {
      display: grid;
      grid-template-columns: 16px 1fr;
      align-items: start;
      gap: 8px;
      color: var(--text);
      font-size: 14.5px;
    }

    .check {
      color: var(--success);
    }

    .li .check {
      margin-top: 2px;
    }

    .section-sep {
      width: 100%;
      height: 1px;
      margin: clamp(16px, 4vw, 28px) 0;
      background: linear-gradient(90deg, rgba(0, 0, 0, 0), var(--border), rgba(0, 0, 0, 0));
    }

    .pricing {
      overflow-anchor: none;
    }

    .pricing .head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 8px;
    }

    .pricing .head h2 {
      margin: 0;
      font-size: 22px;
      font-weight: 800;
    }

    .pricing-link {
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
    }

    .pricing-link:hover {
      text-decoration: underline;
    }

    .billing-switch {
      position: relative;
      isolation: isolate;
      display: inline-grid;
      grid-auto-flow: column;
      align-items: center;
      gap: 4px;
      padding: 4px;
      background: var(--bg-elev);
      border: 1px solid var(--border);
      border-radius: 999px;
    }

    .bill-radio {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .billing-switch label {
      padding: 6px 12px;
      color: var(--muted);
      background: transparent;
      border: 0;
      border-radius: 999px;
      font-weight: 800;
      cursor: pointer;
      user-select: none;
      touch-action: manipulation;
      transition: background .2s, color .2s, box-shadow .2s, transform .08s;
    }

    .billing-switch label:active {
      transform: translateY(1px);
    }

    #billMonthly:focus-visible ~ .head .billing-switch label[for="billMonthly"],
    #billYearly:focus-visible ~ .head .billing-switch label[for="billYearly"] {
      outline: 2px solid var(--ring);
      outline-offset: 2px;
    }

    #billMonthly:checked ~ .head .billing-switch label[for="billMonthly"],
    #billYearly:checked ~ .head .billing-switch label[for="billYearly"] {
      color: #062313;
      background: var(--primary);
      box-shadow: 0 4px 12px var(--ring);
    }

    .plans-stack {
      display: grid;
      grid-template-areas: "stack";
      align-items: start;
      margin-top: 14px;
      content-visibility: visible;
    }

    .plans-stack > .plans {
      grid-area: stack;
    }

    .plans-panel {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(2px);
      transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    }

    #billMonthly:checked ~ .plans-stack #plansMonthly,
    #billYearly:checked ~ .plans-stack #plansYearly {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
      transition: opacity .18s ease, transform .18s ease, visibility 0s;
    }

    .plans {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .plan {
      overflow: hidden;
      display: flex;
      flex-direction: column;
      background: var(--card-gradient);
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: var(--shadow);
      transition: transform .2s, box-shadow .2s, border-color .2s;
    }

    .plan:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(2, 8, 23, .10);
    }

    .plan-head {
      position: relative;
      padding: 20px 20px 10px;
      border-bottom: 1px solid var(--border);
    }

    .plan-name {
      font-size: 18px;
      font-weight: 800;
    }

    .plan-desc {
      margin-top: 4px;
      color: var(--muted);
      font-size: 13.5px;
    }

    .price-row {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      margin-top: 6px;
    }

    .price-cur {
      opacity: .8;
    }

    .price-amt {
      font-size: 28px;
      font-weight: 800;
      line-height: 1;
    }

    .price-per {
      opacity: .6;
      font-size: 14px;
    }

    .badge-pop {
      position: absolute;
      top: 12px;
      right: 12px;
      padding: 4px 8px;
      color: #062313;
      background: linear-gradient(180deg, #20c974 0%, #18b368 100%);
      border: 1px solid var(--border);
      border-radius: 999px;
      box-shadow: 0 6px 16px var(--ring);
      font-size: 12px;
      font-weight: 800;
    }

    .plist {
      flex: 1;
      margin: 0;
      padding: 12px 20px 8px;
      list-style: none;
    }

    .plist li {
      display: grid;
      grid-template-columns: 16px 1fr;
      align-items: start;
      gap: 8px;
      margin: 8px 0;
      color: var(--text);
      font-size: 14.5px;
    }

    .plist strong {
      margin-left: 2px;
    }

    .plan-cta {
      padding: 16px 20px 20px;
    }

    .plan-cta .btn {
      width: 100%;
    }

    .pricing-note {
      margin-top: 10px;
      color: var(--muted);
      font-size: 13.5px;
      text-align: center;
    }

    .callout {
      padding: clamp(28px, 6vw, 64px) 0;
      content-visibility: visible;
    }

    .callout .box {
      padding: clamp(18px, 4vw, 36px);
      background: var(--card-gradient);
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: var(--shadow);
      text-align: center;
    }

    .callout h2 {
      margin: 0 0 6px;
      font-size: clamp(22px, 3.8vw, 36px);
      line-height: 1.15;
      font-weight: 800;
      letter-spacing: .2px;
    }

    .callout p.sub {
      margin: 0;
      color: var(--muted);
      font-size: clamp(13.5px, 2vw, 16px);
    }

    .callout .actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 12px;
    }

    .footer {
      margin-top: auto;
      padding: 24px 0 22px;
      color: var(--muted);
      background: var(--bg);
      border-top: 1px solid var(--border);
      text-align: center;
    }

    .footer-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 18px 26px;
      margin-bottom: 12px;
    }

    .footer-group {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      font-weight: 500;
    }

    .footer-group span {
      opacity: .28;
      user-select: none;
    }

    .footer-group a,
    .footer-copy a {
      color: var(--muted);
      text-decoration: none;
      transition: color .2s ease;
    }

    .footer-group a:hover,
    .footer-copy a:hover {
      color: var(--primary);
    }

    .footer-copy {
      color: var(--muted);
      font-size: 12.75px;
      opacity: .82;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    #features,
    #pricing {
      scroll-margin-top: 112px;
    }

    @media (min-width: 760px) {
      .plans {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width: 980px) {
      .grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width: 1100px) {
      .plans {
        grid-template-columns: 1fr 1fr 1fr;
      }
    }

    @media (max-width: 1060px) {
      .header-menu,
      .header-login,
      .header-cta {
        display: none;
      }

      .menu-button {
        display: inline-flex;
      }

      .drawer {
        position: fixed;
        inset: 0 28% 0 0;
        z-index: 70;
        max-width: 390px;
        display: block;
        padding: 18px;
        background: var(--bg-elev);
        border-right: 1px solid var(--border);
        box-shadow: 20px 0 60px rgba(2, 8, 23, .20);
        transform: translateX(-105%);
        transition: transform .22s ease;
      }

      .drawer.open {
        transform: translateX(0);
      }

      .drawer a {
        display: block;
        padding: 12px;
        color: var(--text);
        border-radius: 12px;
        font-weight: 750;
        text-decoration: none;
      }

      .drawer a:hover {
        background: var(--btn-hover);
      }

      .drawer .drawer-cta {
        margin-top: 8px;
        color: #062313;
        background: var(--primary);
        text-align: center;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(24, 179, 104, .18), inset 0 1px 0 rgba(255, 255, 255, .18);
      }

      .drawer .drawer-cta:hover {
        background: var(--primary);
        box-shadow: 0 6px 16px rgba(24, 179, 104, .22), inset 0 1px 0 rgba(255, 255, 255, .18);
      }

      .backdrop {
        position: fixed;
        inset: 0;
        z-index: 65;
        display: block;
        background: rgba(3, 10, 24, .35);
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s;
      }

      .backdrop.show {
        opacity: 1;
        visibility: visible;
      }
    }

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

    @media (max-width: 700px) {
      .container {
        padding: 0 16px;
      }

      .nav {
        height: 72px;
      }

      .hero {
        padding: 34px 0 16px;
      }

      .hero h1 {
        max-width: 810px;
        margin: 0 0 10px;
        font-size: clamp(38px, 4.45vw, 56px);
        line-height: 1.05;
        letter-spacing: -.03em;
      }

      .hero-actions {
        margin-top: 18px;
      }

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

      .menu-button {
        width: 38px;
        padding: 0;
      }

      .menu-button span {
        display: none;
      }

      .lb-prev,
      .lb-next {
        display: none;
      }

      .footer-row {
        flex-direction: column;
        gap: 10px;
      }

      .footer-group {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
      }

      #features,
      #pricing {
        scroll-margin-top: 88px;
      }
    }

    @media (max-width: 640px) {
      .logo .logo-img {
        height: 34px;
      }

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

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

      .lb-panel {
        width: 96vw;
        max-height: 90vh;
        border-radius: 16px;
      }

      .lb-media img {
        border-radius: 12px;
      }
    }