  :root {
    /* Background hierarchy */
    --bg-base:       #050505;
    --bg-elevated:   #0f0f0f;
    --bg-card:       #141414;
    --bg-input:      #1a1a1a;
    --bg-subtle:     #1e1e1e;
 
    /* Borders */
    --border-default:  #222;
    --border-subtle:   #1f1f1f;
    --border-hairline: #1a1a1a;
 
    /* Text */
    --text-primary:   #ffffff !important;
    --text-secondary: #aaaaaa !important;
    --text-tertiary:  #888888 !important;
    --text-muted:     #666666 !important;
    --text-disabled:  #444444 !important;
 
    /* Brand */
    --brand-primary:        #ec4899;
    --brand-deep:           #be185d;
    --brand-light:          #f472b6;
    --brand-violet:         #a78bfa;
    --brand-bg-subtle:      rgba(236, 72, 153, 0.08);
    --brand-bg-medium:      rgba(236, 72, 153, 0.12);
    --brand-border-subtle:  rgba(236, 72, 153, 0.25);
 
    /* Semantic */
    --success:    #10b981;
    --success-bg: rgba(16, 185, 129, 0.12);
    --warning:    #fbbf24;
    --warning-bg: rgba(251, 191, 36, 0.12);
    --danger:     #ef4444;
    --danger-bg:  rgba(239, 68, 68, 0.12);
    --info:       #60a5fa;
    --info-bg:    rgba(96, 165, 250, 0.10);
 
    /* Fonts: SF Pro for Apple users, Inter as a near-identical fallback */
    --font-ui:    -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "SF Pro", "Inter", system-ui, Segoe UI, Roboto, sans-serif;
    --font-serif: "Fraunces", ui-serif, Georgia, serif;
    --font-mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  }
 
  * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
 
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
 
  body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
 
  ::selection { background: var(--brand-primary); color: #fff; }
 
  a { color: inherit; text-decoration: none; }
 
  /* ---------- Background ambience ---------- */
  .ambience {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(900px 600px at 80% -10%, rgba(236, 72, 153, 0.10), transparent 60%),
      radial-gradient(700px 500px at 0% 20%, rgba(167, 139, 250, 0.08), transparent 60%),
      radial-gradient(800px 700px at 50% 110%, rgba(236, 72, 153, 0.06), transparent 60%),
      var(--bg-base);
  }
 
  /* ---------- Layout ---------- */
  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }
 
  section { padding: 96px 0; }
 
  @media (max-width: 720px) {
    section { padding: 64px 0; }
    .container { padding: 0 18px; }
  }
 
  /* ---------- Typography helpers ---------- */
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-tertiary);
    margin-bottom: 18px;
  }
 
  .eyebrow::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--brand-primary);
  }
 
  h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--text-primary);
  }
 
  h1 { font-size: clamp(44px, 7vw, 76px); letter-spacing: -0.03em; line-height: 1.0; }
  h2 { font-size: clamp(34px, 5vw, 52px); }
  h3 { font-size: clamp(22px, 2.6vw, 28px); }
 
  .accent {
    color: var(--brand-primary);
    font-style: italic;
    font-weight: 600;
  }
 
  p.lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 620px;
  }
 
  p { color: var(--text-secondary); }
 
  /* ---------- Nav ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: saturate(150%) blur(18px);
    -webkit-backdrop-filter: saturate(150%) blur(18px);
    border-bottom: 1px solid var(--border-subtle);
  }
 
  .nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
 
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
  }
  .brand img {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    box-shadow: 0 0 0 1px var(--border-default);
  }
  .brand .accent { font-size: 18px; }
 
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 13.5px;
    color: var(--text-secondary);
  }
  .nav-links a { transition: color .15s ease; }
  .nav-links a:hover { color: var(--text-primary); }
 
  @media (max-width: 720px) {
    .nav-links { gap: 18px; font-size: 13px; }
    .nav-links a.hide-sm { display: none; }
  }
 
  /* ---------- Hero ---------- */
  .hero {
    padding: 88px 0 72px;
    position: relative;
  }
  @media (max-width: 720px) {
    .hero {
    padding: 58px 0 58px;
  }
  }
 
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
  }
 
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  }
 
  .hero h1 {
    margin-bottom: 22px;
  }
 
  .hero-sub {
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 32px;
  }
 
  .hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
 
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0;
    border: 1px solid transparent;
    transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
    cursor: pointer;
  }
  .btn-primary {
    background: var(--brand-primary);
    color: #fff;
    box-shadow: 0 8px 28px rgba(236, 72, 153, 0.28);
  }
  .btn-primary:hover { background: var(--brand-light); transform: translateY(-1px); }
 
  .btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--border-default);
  }
  .btn-secondary:hover { border-color: var(--brand-border-subtle); color: var(--brand-light); }
 
  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .hero-meta-item { display: flex; align-items: center; gap: 8px; }
  .hero-meta-item .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--brand-primary);
    box-shadow: 0 0 12px var(--brand-primary);
  }
 
  /* ---------- Hero phone illustration ---------- */
  .hero-phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
  }
 
  .phone-frame {
    position: relative;
    width: 320px;
    aspect-ratio: 1470 / 3000; /* iPhone 17 Pro Max proportions */
    overflow: hidden;
    transform: rotate(-3deg);
  }
  .phone-frame.tilt-r { transform: rotate(3deg); }
 
  .phone-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 3;
  }
 
  .phone-screen {
    position: absolute;
    inset: 0;
    background: var(--bg-base);
    display: flex;
    flex-direction: column;
  }
 
  .phone-placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    padding: 80px 24px 40px;
    text-align: center;
  }
 
  .phone-placeholder-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-deep));
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.4);
    opacity: 0.6;
  }
  .phone-placeholder span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
 
  /* Calendar pattern hero illustration */
  .calendar-mini {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    padding: 24px;
  }
  .calendar-mini-cell {
    aspect-ratio: 1;
    border-radius: 6px;
    background: var(--bg-card);
  }
  .calendar-mini-cell.dot {
    position: relative;
    background: var(--bg-card);
  }
  .calendar-mini-cell.dot::after {
    content: "";
    position: absolute;
    bottom: 4px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--brand-primary);
  }
  .calendar-mini-cell.active {
    background: var(--brand-bg-medium);
    border: 1px solid var(--brand-border-subtle);
  }
 
  /* ---------- Trust strip ---------- */
  .trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-hairline);
    border: 1px solid var(--border-hairline);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 80px;
  }
  .trust-item {
    background: var(--bg-elevated);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .trust-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .trust-value {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
  }
  .trust-value.pink { color: var(--brand-primary); font-style: italic; }
  @media (max-width: 720px) {
    .trust-strip { grid-template-columns: repeat(2, 1fr); }
  }
 
  /* ---------- Section header ---------- */
  .section-head {
    max-width: 720px;
    margin-bottom: 56px;
  }
  .section-head p {
    margin-top: 18px;
    font-size: 16px;
    color: var(--text-secondary);
  }
 
  /* ---------- Feature grid ---------- */
  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  @media (max-width: 720px) { .features { grid-template-columns: 1fr; } }
 
  .feature {
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    border-radius: 18px;
    padding: 28px;
    transition: border-color .2s ease, transform .2s ease;
  }
  .feature:hover {
    border-color: var(--brand-border-subtle);
    transform: translateY(-2px);
  }
 
  .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--brand-bg-medium);
    border: 1px solid var(--brand-border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    margin-bottom: 18px;
  }
  .feature-icon svg { width: 22px; height: 22px; }
 
  .feature h3 {
    font-size: 22px;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .feature p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-secondary);
  }
 
  /* ---------- Showcase rows (alternating with screenshot slots) ---------- */
  .showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
  }
  .showcase:last-child { margin-bottom: 0; }
  .showcase.reverse > .showcase-text { order: 2; }
  .showcase.reverse > .showcase-visual { order: 1; }
 
  @media (max-width: 880px) {
    .showcase { grid-template-columns: 1fr; gap: 36px; margin-bottom: 64px; }
    .showcase.reverse > .showcase-text { order: 1; }
    .showcase.reverse > .showcase-visual { order: 2; }
  }
 
  .showcase-text .eyebrow { margin-bottom: 14px; }
  .showcase-text h2 { margin-bottom: 18px; }
  .showcase-text p { font-size: 15.5px; line-height: 1.65; color: var(--text-secondary); margin-bottom: 14px; }
  .showcase-text ul {
    list-style: none;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .showcase-text li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text-secondary);
  }
  .showcase-text li::before {
    content: "";
    flex-shrink: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand-primary);
    margin-top: 9px;
  }
 
  /* Screenshot slot — fits iPhone 17 Pro Max screenshots (1320 × 2868) */
  .screenshot-slot {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    aspect-ratio: 1470 / 3000;
    overflow: hidden;
  }
  .screenshot-slot::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 2;
  }
  .screenshot-slot .placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background:
      radial-gradient(circle at 50% 30%, rgba(236, 72, 153, 0.10), transparent 70%),
      var(--bg-elevated);
  }
  .screenshot-slot .placeholder-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    padding: 0 24px;
  }
  .screenshot-slot .placeholder-name {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--brand-primary);
    text-align: center;
    padding: 0 24px;
  }
  .screenshot-slot .placeholder-hint {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--text-disabled);
    text-align: center;
    padding: 0 24px;
  }
  .screenshot-slot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
 
  /* ---------- Privacy section ---------- */
  .privacy {
    background:
      radial-gradient(800px 500px at 80% 10%, rgba(236, 72, 153, 0.10), transparent 60%),
      var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }
 
  .privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 44px;
  }
  @media (max-width: 880px) { .privacy-grid { grid-template-columns: 1fr; } }
 
  .privacy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 16px;
    padding: 26px;
  }
  .privacy-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .privacy-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }
 
  .privacy-card .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-primary);
    background: var(--brand-bg-subtle);
    border: 1px solid var(--brand-border-subtle);
    border-radius: 999px;
    padding: 5px 10px;
    margin-bottom: 16px;
  }
  .privacy-card .badge.success { color: var(--success); background: var(--success-bg); border-color: rgba(16, 185, 129, 0.25); }
  .privacy-card .badge.danger  { color: var(--danger); background: var(--danger-bg); border-color: rgba(239, 68, 68, 0.25); }
 
  /* ---------- Disclaimer card ---------- */
  .disclaimer {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-left: 3px solid var(--warning);
    border-radius: 12px;
    padding: 18px 20px;
    margin-top: 28px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .disclaimer-icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    color: var(--warning);
    margin-top: 1px;
  }
  .disclaimer-text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
  }
  .disclaimer-text strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    font-size: 13.5px;
  }
 
  /* ---------- FAQ ---------- */
  .faq {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-default);
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-elevated);
  }
 
  details {
    border-bottom: 1px solid var(--border-hairline);
  }
  details:last-child { border-bottom: none; }
 
  summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-ui);
    font-size: 15.5px;
    font-weight: 500;
    color: var(--text-primary);
    transition: color .15s ease;
  }
  summary::-webkit-details-marker { display: none; }
  summary:hover { color: var(--brand-light); }
 
  .summary-chev {
    flex-shrink: 0;
    width: 18px; height: 18px;
    color: var(--text-tertiary);
    transition: transform .2s ease;
  }
  details[open] .summary-chev { transform: rotate(90deg); color: var(--brand-primary); }
 
  .faq-body {
    padding: 0 24px 22px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-secondary);
  }
  .faq-body p + p { margin-top: 10px; }
 
  /* ---------- Final CTA ---------- */
  .final-cta {
    text-align: center;
    padding: 96px 24px;
    border-top: 1px solid var(--border-subtle);
  }
  .final-cta h2 {
    margin-bottom: 18px;
  }
  .final-cta p {
    max-width: 520px;
    margin: 0 auto 32px;
    font-size: 16px;
    color: var(--text-secondary);
  }
 
  /* ---------- Footer ---------- */
  footer {
    background: var(--bg-base);
    border-top: 1px solid var(--border-subtle);
    padding: 56px 0 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  @media (max-width: 720px) { 
        .footer-grid { 
            grid-template-columns: 1fr 1fr; 
            gap: 30px 24px; 
        }
        .footer-grid > div:first-child {
            grid-column: 1 / -1;
        }
      
  }
 
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .footer-brand img {
    width: 32px; height: 32px;
    border-radius: 8px;
    box-shadow: 0 0 0 1px var(--border-default);
  }
  .footer-tagline {
    font-size: 13.5px;
    color: var(--text-tertiary);
    max-width: 320px;
    line-height: 1.6;
  }
 
  .footer-col h4 {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color .15s ease;
  }
  .footer-col a:hover { color: var(--brand-light); }
 
  .footer-bottom {
    border-top: 1px solid var(--border-hairline);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
 
  /* ---------- Reduced motion ---------- */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .phone-frame { transform: none; }
  }
 
  /* ---------- 18+ Age badge ---------- */
  .age-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--danger-bg);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--danger);
    margin-bottom: 24px;
  }
  .age-badge .age-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0;
  }
 
  /* ---------- App Store badge ---------- */
  .app-store-badge {
    display: inline-flex;
    width: 140px !important;
    align-items: center;
    background: #000;
    color: #fff;
    font-family: var(--font-ui);
    transition: transform .12s ease, border-color .15s ease;
    box-shadow: 0 8px 28px rgba(236, 72, 153, 0.18);
  }
  .app-store-badge:hover {
    transform: translateY(-1px);
    border-color: var(--brand-primary);
  }
 
  /* ---------- Price note (under CTA) ---------- */
  .price-note {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-top: 14px;
    line-height: 1.6;
  }
  .price-note strong {
    color: var(--text-primary);
    font-weight: 600;
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
  }
  .price-note .pink {
    color: var(--brand-light);
    font-weight: 600;
  }
 
  /* ---------- Pricing block (final CTA) ---------- */
  .pricing-block {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 32px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    border-radius: 18px;
    margin: 0 auto 28px;
  }
  .pricing-trial {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand-primary);
    font-weight: 600;
  }
  .pricing-price {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
  }
  .pricing-price .per {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-secondary);
    letter-spacing: 0;
  }
  .pricing-meta {
    font-size: 12.5px;
    color: var(--text-tertiary);
    line-height: 1.5;
    text-align: center;
  }
@media (max-width: 720px) {
  .hero-phone-wrap {
    perspective: none;
  }

  .phone-frame,
  .phone-frame.tilt-r {
    transform: none;
  }
  .phone-frame {
    width: min(340px, 82vw);
    margin: 0 auto;
  }
}