/* ======================================================
   SWYLE — Premium Landing Page Stylesheet
   ====================================================== */

/* ---------- Reset & Tokens ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:       #faf9f7;
    --bg-alt:   #f1efeb;
    --surface:  #ffffff;
    --text:     #111111;
    --text-2:   #555555;
    --text-3:   #999999;
    --accent:   #ff4458;
    --accent-2: #ff6b7a;
    --black:    #111111;
    --white:    #ffffff;
    --radius:   20px;
    --radius-sm:12px;
    --radius-xs:8px;
    --font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --ease:     cubic-bezier(.16, 1, .3, 1);
    --ease-out: cubic-bezier(.33, 1, .68, 1);
    --nav-h:    72px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

::selection { background: var(--accent); color: var(--white); }

/* ---------- Typography ---------- */
.label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

h1 { font-family: var(--font-display); font-weight: 700; }
h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.08; letter-spacing: -.03em; }
h3 { font-family: var(--font-display); font-weight: 600; }

/* ---------- Shared Components ---------- */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--black);
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
    border-radius: 100px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
    position: relative;
    overflow: hidden;
}
.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    opacity: 0;
    transition: opacity .35s;
    border-radius: inherit;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
.cta-btn:hover::before { opacity: 1; }
.cta-btn svg,
.cta-btn span { position: relative; z-index: 1; }

.cta-btn--large {
    padding: 20px 44px;
    font-size: 1.05rem;
}

.phone-frame {
    background: var(--bg-alt);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(0,0,0,.08), 0 0 0 1px rgba(0,0,0,.04);
    position: relative;
    aspect-ratio: 9/19.5;
}
.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Animations (GSAP-free) ---------- */
.anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================================
   NAV
   ====================================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav.scrolled {
    background: rgba(250, 249, 247, .82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.nav-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -.02em;
    color: var(--text);
}
.nav-logo-icon {
    border-radius: 8px; /* App icon rounded corners */
}
.nav-logo-mark {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: var(--white);
    font-size: .9rem;
    font-weight: 800;
    border-radius: 10px;
}
.nav-links {
    display: flex;
    gap: 36px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-2);
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--text); }

.nav-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--black);
    color: var(--white);
    font-size: .82rem;
    font-weight: 600;
    border-radius: 100px;
    transition: background .2s, transform .2s;
}
.nav-download:hover { background: var(--accent); transform: scale(1.03); }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    height: 20px;
    justify-content: center;
}
.nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s;
}
.nav-burger.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-burger.open span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* ======================================================
   HERO
   ====================================================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-h) + 20px) 32px 40px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.hero-content {
    flex: 1;
    max-width: 540px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: rgba(255, 68, 88, .08);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 28px;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -.04em;
    margin-bottom: 24px;
}
.hero-accent {
    color: var(--accent);
}
.hero-desc {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-2);
    max-width: 440px;
    margin-bottom: 36px;
}
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-rating {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stars {
    color: #f5a623;
    font-size: .9rem;
    letter-spacing: 2px;
}
.rating-text {
    font-size: .78rem;
    color: var(--text-3);
    font-weight: 500;
}

/* Hero Phones */
.hero-phones {
    position: relative;
    width: 340px;
    height: 540px;
    flex-shrink: 0;
}
.hero-phone {
    position: absolute;
    width: 250px;
}
.hero-phone--back {
    top: 40px;
    left: 0;
    z-index: 1;
    opacity: .6;
    transform: rotate(-6deg) scale(.92);
}
.hero-phone--front {
    top: 0;
    right: 0;
    z-index: 2;
    animation: float 5s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ======================================================
   TICKER
   ====================================================== */
.ticker {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
    padding: 20px 32px;
    background: var(--surface);
    display: flex;
    justify-content: center;
}
.ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    /* max-width: 1200px; */
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.ticker-item {
    flex-shrink: 0;
}
.ticker-dot {
    color: var(--accent);
    font-size: .5rem;
    flex-shrink: 0;
}

/* ======================================================
   FEATURES
   ====================================================== */
.features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 32px 40px;
}
.features-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}
.features-intro h2 { margin-bottom: 24px; }
.features-intro p { font-size: 1.15rem; color: var(--text-2); line-height: 1.7; }

.feature-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 60px;
}
.feature-block--reverse { flex-direction: row-reverse; }

.feature-text {
    flex: 1;
}
.feature-num {
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .1em;
    margin-bottom: 16px;
}
.feature-text h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -.02em;
    margin-bottom: 16px;
    line-height: 1.15;
}
.feature-text p {
    font-size: 1rem;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 420px;
}
.feature-phone {
    width: 260px;
    flex-shrink: 0;
}

/* ======================================================
   HERO EXTRAS (Blobs, Badge)
   ====================================================== */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .2;
    pointer-events: none;
    z-index: 0;
}
.hero-blob--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -10%; right: -5%;
}
@media (max-width: 768px) {
    .hero-blob--1 { right: -20%; width: 300px; height: 300px; }
}
.hero-blob--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #ff8a65 0%, transparent 70%);
    bottom: -5%; left: -8%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-2);
}

/* ======================================================
   HIGHLIGHTS STRIP
   ====================================================== */
.highlights {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 80px;
}
.highlights-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.04);
}
.highlight {
    padding: 36px 28px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    transition: background .3s var(--ease);
}
.highlight:last-child { border-right: none; }
.highlight:hover { background: rgba(255, 68, 88, .03); }
.highlight-icon {
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 68, 88, .08);
    border-radius: 12px;
    color: var(--accent);
    margin-bottom: 16px;
}
.highlight h3 {
    font-size: .95rem;
    margin-bottom: 8px;
    letter-spacing: -.01em;
}
.highlight p {
    font-size: .82rem;
    color: var(--text-2);
    line-height: 1.55;
    max-width: 200px;
    margin: 0 auto;
}

/* ======================================================
   SWYLE PRO
   ====================================================== */
.pro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 80px;
}
.pro-header {
    max-width: 560px;
    margin-bottom: 40px;
}
.pro-header h2 { margin-bottom: 16px; }
.pro-subtitle {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.7;
}
.pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pro-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pro-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.6);
}
.pro-card--highlight {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
    /* grid-row: span 2; */
    display: flex;
    flex-direction: column;
}
.pro-card--highlight p { color: rgba(255,255,255,.6); }
.pro-card-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 68, 88, .1);
    border-radius: 16px;
    color: var(--accent);
    margin-bottom: 24px;
}
.pro-card--highlight .pro-card-icon {
    background: rgba(255,255,255,.1);
    color: var(--white);
}
.pro-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: -.01em;
}
.pro-card p {
    font-size: .95rem;
    color: var(--text-2);
    line-height: 1.7;
}
.pro-phone {
    margin-top: auto;
    padding-top: 32px;
    display: flex;
    justify-content: center;
}
.pro-phone .phone-frame {
    width: 180px;
    border-radius: 24px;
}

/* ======================================================
   WAITLIST
   ====================================================== */
.waitlist {
    padding: 100px 32px;
    position: relative;
    overflow: hidden;
    background: var(--black);
    color: var(--white);
    border-radius: 40px;
    margin: 0 20px 80px;
}
.waitlist-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .15;
    pointer-events: none;
}
.waitlist-blob--1 {
    width: 600px; height: 600px;
    background: var(--accent);
    top: -30%; right: -15%;
}
.waitlist-blob--2 {
    width: 500px; height: 500px;
    background: #ff8a65;
    bottom: -30%; left: -15%;
}
.waitlist h2, .waitlist p, .waitlist-sub {
    color: var(--white);
}
.waitlist-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.waitlist-inner h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 16px;
}
.waitlist-inner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    line-height: 1.7;
}
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}
.waitlist-input-wrap {
    display: flex;
    gap: 0;
    background: var(--surface);
    border: 2px solid rgba(0,0,0,.08);
    border-radius: 100px;
    padding: 6px;
    transition: border-color .25s;
}
.waitlist-input-wrap:focus-within {
    border-color: var(--accent);
}
.waitlist-input-wrap input {
    flex: 1;
    border: none;
    background: none;
    padding: 14px 20px;
    font-size: .95rem;
    font-family: var(--font);
    outline: none;
    color: var(--text);
    min-width: 0;
}
.waitlist-input-wrap input::placeholder {
    color: var(--text-3);
}
.waitlist-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--black);
    color: var(--white);
    font-weight: 600;
    font-size: .9rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background .25s, transform .2s;
    white-space: nowrap;
    position: relative;
}
.waitlist-submit:hover {
    background: var(--accent);
    transform: scale(1.03);
}
.waitlist-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
}
.waitlist-submit-loading {
    display: none;
}
.waitlist-submit.loading .waitlist-submit-text { visibility: hidden; }
.waitlist-submit.loading .waitlist-submit-loading {
    display: flex;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
}
.waitlist-feedback {
    display: none;
    font-size: .85rem;
    text-align: center;
    padding: 12px 0;
    font-weight: 500;
}
.waitlist-feedback.success {
    display: block;
    color: #4ade80;
}
.waitlist-feedback.error {
    display: block;
    color: #f87171;
}
.waitlist-sub {
    display: block;
    margin-top: 20px;
    font-size: .78rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: .02em;
}


/* ======================================================
   SCREENSHOTS CAROUSEL
   ====================================================== */
.screens {
    padding: 80px 32px;
    overflow: hidden;
}
.screens-header {
    max-width: 1200px;
    margin: 0 auto 40px;
}
.screens-header h2 { margin-bottom: 12px; }

.screens-carousel {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible; /* Show shadows and hover state */
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    padding: 20px 0; /* Extra room for shadows */
}
.screens-carousel::-webkit-scrollbar { display: none; }
.screens-carousel:active { cursor: grabbing; }

.screens-track {
    display: flex;
    gap: 24px;
    padding: 20px max(32px, calc((100vw - 1200px) / 2)); /* Padding top/bottom for hover scaling */
    width: max-content;
    overflow: visible;
}
.screen-item {
    width: 220px;
    flex-shrink: 0;
    text-align: center;
}
.screen-item .phone-frame {
    border-radius: 28px;
    margin-bottom: 14px;
    transition: transform .45s var(--ease);
}
.screen-item:hover .phone-frame {
    transform: translateY(-8px) scale(1.02);
}
.screen-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* ======================================================
   REVIEWS
   ====================================================== */
.reviews {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 80px;
}
.reviews-header {
    margin-bottom: 32px;
}
.reviews-header h2 { margin-bottom: 0; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.review-stars { color: #f5a623; font-size: .9rem; letter-spacing: 2px; }
.review-card p {
    font-size: .95rem;
    line-height: 1.65;
    color: var(--text);
    flex: 1;
}
.review-card cite {
    font-style: normal;
    font-weight: 600;
    font-size: .85rem;
    color: var(--text);
}
.review-card cite span {
    color: var(--text-3);
    font-weight: 400;
    margin-left: 4px;
}

/* ======================================================
   FAQ
   ====================================================== */
.faq {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px 80px;
}
.faq-header { margin-bottom: 32px; }
.faq-header h2 { margin-bottom: 0; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    -webkit-user-select: none;
    user-select: none;
    transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-3);
    transition: transform .3s var(--ease);
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item summary:hover { color: var(--accent); }
.faq-body {
    padding: 0 0 22px;
}
.faq-body p {
    font-size: .92rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* ======================================================
   FINAL CTA
   ====================================================== */
.final-cta {
    padding: 0 32px 80px;
}
.final-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--black);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.final-cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: .15;
    pointer-events: none;
}
.final-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff8a65 0%, transparent 70%);
    opacity: .1;
    pointer-events: none;
}
.final-cta-inner h2 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.final-cta-inner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.final-cta-inner .cta-btn {
    background: var(--white);
    color: var(--black);
    position: relative;
    z-index: 1;
}
.final-cta-inner .cta-btn::before { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.final-cta-inner .cta-btn:hover { color: var(--white); }

.cta-sub {
    display: block;
    margin-top: 16px;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
    position: relative;
    z-index: 1;
}

/* ======================================================
   FOOTER
   ====================================================== */
.footer {
    border-top: 1px solid rgba(0,0,0,.06);
    padding: 60px 32px 32px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand p {
    font-size: .88rem;
    color: var(--text-3);
    margin-top: 12px;
    max-width: 260px;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--bg-alt);
    color: var(--text-2);
    transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--black); color: var(--white); }

.footer-col h4 {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-3);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    font-size: .88rem;
    color: var(--text-2);
    padding: 4px 0;
    transition: color .2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: 24px;
}
.footer-bottom p {
    font-size: .78rem;
    color: var(--text-3);
}

/* ======================================================
   LEGAL/SUB PAGES
   ====================================================== */
.legal-page .nav { background: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(0,0,0,0.05); }
.legal-content { max-width: 800px; margin: 160px auto 120px; padding: 0 32px; }
.legal-content h1 { font-size: clamp(3rem, 6vw, 4rem); letter-spacing: -0.04em; margin-bottom: 32px; font-family: 'Space Grotesk', sans-serif; }
.legal-content .lead { font-size: 1.25rem; line-height: 1.6; color: var(--text-2); margin-bottom: 60px; font-weight: 500; }
.legal-content section { margin-bottom: 48px; }
.legal-content h2 { font-size: 1.5rem; margin-bottom: 16px; color: var(--text); }
.legal-content p { font-size: 1.05rem; line-height: 1.75; color: var(--text-2); margin-bottom: 24px; }
.footer-simple { text-align: center; padding: 60px 0; border-top: 1px solid rgba(0,0,0,0.05); font-size: 0.85rem; color: var(--text-3); }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; padding-top: calc(var(--nav-h) + 60px); gap: 48px; min-height: auto; }
    .hero-content { max-width: 600px; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-cta-row { justify-content: center; }
    .hero-phones { width: 300px; height: 460px; }
    .hero-phone { width: 210px; }

    .phone-frame { border-radius: 28px; }

    .feature-block,
    .feature-block--reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .feature-text p { max-width: 100%; margin: 0 auto; }
    .feature-phone { width: 220px; }

    .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
    .pro-grid { grid-template-columns: 1fr; gap: 16px; }
    .pro-card--highlight { grid-row: auto; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .nav-links { display: none; }
    .nav-download { display: none; }
    .nav-burger { display: flex; }

    /* Mobile nav overlay */
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        top: var(--nav-h);
        background: var(--bg);
        padding: 40px 32px;
        gap: 0;
        z-index: 99;
        animation: fadeDown .35s var(--ease);
    }
    .nav-links.open a {
        padding: 18px 0;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--text);
        border-bottom: 1px solid rgba(0,0,0,.06);
    }
    @keyframes fadeDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: none; }
    }

    .hero { padding: calc(var(--nav-h) + 40px) 24px 48px; }
    .hero h1 { font-size: clamp(2.4rem, 10vw, 3.6rem); }
    .hero-desc { font-size: 1rem; }
    .hero-phones { width: 260px; height: 400px; }
    .hero-phone { width: 180px; }

    .features { padding: 80px 24px 40px; }
    .features-intro { margin-bottom: 60px; }
    .feature-block { margin-bottom: 60px; gap: 32px; }

    .highlights { padding: 0 24px 100px; }
    .highlights-inner { grid-template-columns: repeat(2, 1fr); }
    .highlight { border-bottom: 1px solid rgba(0,0,0,.06); }
    .highlight:nth-child(even) { border-right: none; }
    .highlight:nth-last-child(-n+1) { border-bottom: none; }

    .pro { padding: 0 24px 80px; }
    .pro-grid { grid-template-columns: 1fr; }

    .screens { padding: 80px 0; }
    .screens-header { padding: 0 24px; }

    .reviews { padding: 0 24px 80px; }

    .faq { padding: 0 24px 80px; }
    .faq-item summary { font-size: .95rem; padding: 18px 0; }

    .waitlist { padding: 60px 20px; margin: 0 16px 80px; }
    .waitlist-input-wrap { flex-direction: column; border-radius: 20px; padding: 6px; }
    .waitlist-submit { width: 100%; border-radius: 100px; padding: 16px; margin-top: 4px; }

    .final-cta { padding: 0 16px 80px; }
    .final-cta-inner { padding: 60px 28px; border-radius: 24px; }

    .footer { padding: 40px 24px 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.4rem; }
    .hero-phones { width: 220px; height: 340px; }
    .hero-phone { width: 155px; }
    .hero-phone--back { top: 30px; }

    .phone-frame { border-radius: 20px; }

    .screen-item { width: 180px; }

    .highlights-inner { grid-template-columns: 1fr; }
    .highlight { border-right: none; border-bottom: 1px solid rgba(0,0,0,.06); }
    .highlight:last-child { border-bottom: none; }
}
