/* Wave marketing site */
:root {
    --navy: #10242f;
    --navy-soft: #17333e;
    --navy-light: #21434d;
    --teal: #40d2ba;
    --teal-dark: #08a78f;
    --ivory: #f7f3ea;
    --ivory-deep: #eee8dc;
    --white: #fffefa;
    --ink: #132832;
    --muted: #637076;
    --blue: #1185fe;
    --line: rgba(16, 36, 47, 0.16);
    --line-light: rgba(255, 255, 255, 0.16);
    --primary-dark: var(--navy);
    --primary-light: var(--teal-dark);
    --text-muted: var(--muted);
    --font-sans: "Funnel Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: 1280px;
    --gutter: clamp(20px, 4vw, 64px);
    --section-space: clamp(96px, 12vw, 176px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    background: var(--navy);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.marketing-page {
    min-height: 100svh;
    background: var(--navy);
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
summary {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
ol,
ul {
    margin: 0;
}

ul,
ol {
    padding: 0;
}

::selection {
    background: var(--teal);
    color: var(--navy);
}

:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 16px;
    padding: 10px 16px;
    transform: translateY(-160%);
    border-radius: 4px;
    background: var(--white);
    color: var(--navy);
    font-weight: 650;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(calc(100% - (2 * var(--gutter)) - env(safe-area-inset-left) - env(safe-area-inset-right)), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: var(--section-space);
}

.eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--teal);
}

.eyebrow::before {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.eyebrow-dark {
    color: var(--teal-dark);
}

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

h1,
h2,
h3 {
    font-weight: 430;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

h1 {
    font-size: clamp(3.5rem, 6vw, 6.7rem);
}

h2 {
    font-size: clamp(2.75rem, 5.2vw, 5.75rem);
}

h3 {
    font-size: clamp(2rem, 3.2vw, 3.65rem);
}

h1 em,
h2 em,
h3 em {
    color: var(--teal-dark);
    font-weight: 320;
}

/* Navigation */
.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: calc(84px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    isolation: isolate;
}

.site-header::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(16, 36, 47, 0.92);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.site-header.is-scrolled::before,
.site-header.is-open::before {
    opacity: 1;
}

.nav-shell {
    display: flex;
    width: min(calc(100% - (2 * var(--gutter)) - env(safe-area-inset-left) - env(safe-area-inset-right)), 1400px);
    height: 100%;
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
}

.brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 124px;
    height: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.3vw, 38px);
}

.primary-nav > a {
    position: relative;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    font-weight: 520;
    letter-spacing: -0.01em;
    transition: color 180ms ease;
}

.primary-nav > a:not(.nav-download)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--teal);
    content: "";
    transition: transform 220ms ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible {
    color: var(--white);
}

.primary-nav > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.primary-nav .nav-download {
    display: inline-flex;
    min-height: 44px;
    padding: 0 18px;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: var(--white);
}

.primary-nav .nav-download:hover {
    border-color: var(--teal);
    background: var(--teal);
    color: var(--navy);
}

.nav-toggle {
    position: relative;
    z-index: 2;
    display: none;
    height: 44px;
    padding: 0;
    align-items: center;
    gap: 12px;
    border: 0;
    background: none;
    color: var(--white);
    cursor: pointer;
}

.nav-toggle-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 14px;
}

.nav-toggle-icon span {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    transition: top 200ms ease, transform 200ms ease;
}

.nav-toggle-icon span:first-child { top: 2px; }
.nav-toggle-icon span:last-child { top: 11px; }
.site-header.is-open .nav-toggle-icon span:first-child { top: 6px; transform: rotate(45deg); }
.site-header.is-open .nav-toggle-icon span:last-child { top: 6px; transform: rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    min-height: 960px;
    overflow: hidden;
    padding-top: calc(84px + env(safe-area-inset-top));
    background: var(--navy);
    color: var(--white);
}

.hero-atmosphere {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 84% 44%, rgba(64, 210, 186, 0.18), transparent 28%),
        radial-gradient(circle at 62% 104%, rgba(64, 210, 186, 0.1), transparent 32%);
    pointer-events: none;
}

.hero-atmosphere::after {
    position: absolute;
    width: 930px;
    height: 930px;
    top: 46%;
    right: -230px;
    border: 1px solid rgba(64, 210, 186, 0.12);
    border-radius: 46% 54% 51% 49% / 60% 46% 54% 40%;
    content: "";
    transform: translateY(-50%) rotate(-18deg);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 810px;
    grid-template-columns: minmax(0, 0.96fr) minmax(520px, 0.94fr);
    align-items: center;
    gap: clamp(30px, 4vw, 80px);
    padding-top: 44px;
}

.hero-copy {
    position: relative;
    z-index: 4;
    max-width: 690px;
    padding-bottom: 32px;
}

.hero-copy .eyebrow {
    margin-bottom: 30px;
}

.hero-copy h1 {
    max-width: 680px;
    text-wrap: balance;
}

.hero-lede {
    max-width: 620px;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1.05rem, 1.55vw, 1.35rem);
    font-weight: 350;
    line-height: 1.55;
}

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

.button {
    display: inline-flex;
    min-height: 54px;
    padding: 0 23px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 650;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

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

.button-accent {
    background: var(--teal);
    color: var(--navy);
}

.button-accent:hover {
    background: #5de0cb;
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.trust-line {
    margin-top: 46px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 520;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.trust-track,
.trust-group {
    display: flex;
}

.trust-group {
    flex-wrap: wrap;
    gap: 9px 0;
}

.trust-group[aria-hidden="true"] {
    display: none;
}

.trust-group span {
    display: inline-flex;
    align-items: center;
}

.trust-group span:not(:last-child)::after {
    width: 3px;
    height: 3px;
    margin-inline: 13px;
    border-radius: 50%;
    background: var(--teal);
    content: "";
}

.hero-product {
    position: relative;
    width: 100%;
    height: 760px;
    align-self: end;
}

.phone {
    position: absolute;
    z-index: 2;
    margin: 0;
    filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.25));
}

.phone img {
    width: 100%;
    height: auto;
}

.phone-primary {
    right: -22px;
    bottom: -60px;
    width: min(34vw, 455px);
    transform: rotate(2deg);
}

.phone-secondary {
    z-index: 1;
    right: 39%;
    bottom: 5px;
    width: min(27vw, 350px);
    transform: rotate(-7deg);
    opacity: 0.96;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(64, 210, 186, 0.2);
    border-radius: 50%;
}

.hero-orbit-one {
    width: 600px;
    height: 600px;
    right: -110px;
    bottom: 0;
}

.hero-orbit-two {
    width: 420px;
    height: 420px;
    right: -20px;
    bottom: 85px;
}

.wave-glyph {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--teal);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 800;
}

/* Intro */
.intro {
    background: var(--ivory);
}

.intro-grid {
    display: block;
}

.intro-grid h2 {
    max-width: 980px;
}

.intro-copy {
    max-width: 680px;
    margin-top: 58px;
    margin-left: auto;
}

.intro-copy p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

/* Zero spam */
.zero-spam {
    padding: 0 0 var(--section-space);
    background: var(--ivory);
}

.zero-spam-panel {
    display: grid;
    min-height: 430px;
    padding: clamp(38px, 6vw, 80px);
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
    gap: clamp(45px, 8vw, 110px);
    overflow: hidden;
    border-radius: 20px;
    background: #dbeee9;
}

.spam-visual {
    position: relative;
    display: grid;
    min-height: 270px;
    place-items: center;
}

.spam-rings {
    position: relative;
    display: grid;
    width: 230px;
    height: 230px;
    place-items: center;
    border: 1px solid rgba(16, 36, 47, 0.18);
    border-radius: 50%;
}

.spam-rings::before,
.spam-rings::after {
    position: absolute;
    border: 1px solid rgba(16, 36, 47, 0.12);
    border-radius: 50%;
    content: "";
}

.spam-rings::before { inset: 24px; }
.spam-rings::after { inset: 50px; background: var(--teal); border-color: transparent; }

.spam-rings span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    color: var(--navy);
    font-size: 3.5rem;
    font-weight: 420;
    letter-spacing: -0.06em;
}

.spam-rings small {
    margin-left: 5px;
    font-size: 0.62rem;
    font-weight: 750;
    letter-spacing: 0.12em;
}

.spam-copy .eyebrow {
    margin-bottom: 24px;
}

.spam-copy h2 {
    max-width: 720px;
    font-size: clamp(2.6rem, 4.7vw, 5.2rem);
}

.spam-copy > p:last-child {
    max-width: 590px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.68;
}

/* Feature stories */
.feature-stories {
    overflow: hidden;
    padding-top: 0;
    background: var(--ivory);
}

.section-heading {
    display: flex;
    padding-bottom: 70px;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading .eyebrow {
    margin-bottom: 24px;
}

.section-heading > p {
    max-width: 360px;
    padding-bottom: 6px;
    color: var(--muted);
    line-height: 1.65;
}

.story-list {
    border-bottom: 1px solid var(--line);
}

.story {
    display: grid;
    min-height: 620px;
    padding-block: clamp(58px, 7vw, 100px);
    grid-template-columns: minmax(280px, 0.72fr) minmax(430px, 1.28fr);
    align-items: center;
    gap: clamp(50px, 9vw, 130px);
    border-top: 1px solid var(--line);
}

.story-reverse {
    grid-template-columns: minmax(430px, 1.28fr) minmax(280px, 0.72fr);
}

.story-reverse .story-copy {
    order: 2;
}

.story-copy {
    max-width: 460px;
}

.story-copy > p {
    margin-top: 26px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.68;
}

.inline-features {
    display: flex;
    margin-top: 34px;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
}

.inline-features li {
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 20px;
    color: #4f6067;
    font-size: 0.72rem;
    font-weight: 570;
    letter-spacing: 0.03em;
}

.product-stage {
    position: relative;
    height: 690px;
    overflow: hidden;
    border: 1px solid rgba(16, 36, 47, 0.06);
    border-radius: 20px;
    background: #dbeee9;
}

.product-stage::before,
.product-stage::after {
    position: absolute;
    border: 1px solid rgba(16, 36, 47, 0.11);
    border-radius: 50%;
    content: "";
}

.product-stage::before {
    width: 540px;
    height: 540px;
    right: -140px;
    bottom: -190px;
}

.product-stage::after {
    width: 360px;
    height: 360px;
    right: -50px;
    bottom: -100px;
}

.product-stage > img {
    position: absolute;
    z-index: 2;
    right: 8%;
    bottom: -120px;
    width: min(57%, 410px);
    height: auto;
    filter: drop-shadow(0 24px 22px rgba(16, 36, 47, 0.18));
}

.stage-chat > img {
    top: 50%;
    right: 6%;
    bottom: auto;
    width: auto;
    height: calc(100% - 72px);
    transform: translateY(-50%);
}

.stage-media {
    background: var(--navy-soft);
}

.stage-media::before,
.stage-media::after {
    border-color: rgba(64, 210, 186, 0.18);
}

.stage-media > img {
    right: auto;
    bottom: -150px;
    left: 9%;
    width: min(55%, 400px);
}

.stage-profile {
    background: #e8e0d3;
}

.stage-profile > img {
    right: auto;
    bottom: -130px;
    left: 50%;
    width: min(56%, 410px);
    transform: translateX(-50%);
}

.story-compact {
    min-height: 520px;
}

.editorial-feature {
    position: relative;
    display: flex;
    min-height: 390px;
    overflow: hidden;
    padding: clamp(34px, 5vw, 70px);
    align-items: center;
    justify-content: center;
    gap: clamp(35px, 6vw, 90px);
    border: 1px solid rgba(16, 36, 47, 0.08);
    border-radius: 20px;
    background: var(--white);
}

.timer-feature {
    background: var(--navy);
}

.timer-feature::before,
.timer-feature::after {
    position: absolute;
    width: 500px;
    height: 210px;
    border: 1px solid rgba(64, 210, 186, 0.16);
    border-radius: 50%;
    content: "";
}

.timer-feature::before { right: -190px; bottom: -100px; transform: rotate(-12deg); }
.timer-feature::after { right: -130px; bottom: -140px; transform: rotate(14deg); }

.timer-ring {
    position: relative;
    z-index: 1;
    display: grid;
    width: 190px;
    height: 190px;
    flex: 0 0 190px;
    place-items: center;
    border: 1px solid rgba(64, 210, 186, 0.34);
    border-radius: 50%;
}

.timer-ring::before {
    position: absolute;
    inset: 14px;
    border: 7px solid rgba(64, 210, 186, 0.1);
    border-top-color: var(--teal);
    border-right-color: var(--teal);
    border-radius: 50%;
    content: "";
    transform: rotate(30deg);
}

.timer-ring span {
    display: flex;
    align-items: baseline;
    color: var(--white);
    font-size: 3rem;
    font-weight: 350;
    letter-spacing: -0.06em;
}

.timer-ring small {
    margin-left: 5px;
    color: var(--teal);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.editorial-feature-copy {
    position: relative;
    z-index: 1;
}

.editorial-feature-copy span {
    display: block;
    margin-bottom: 20px;
    color: var(--teal);
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.editorial-feature-copy strong {
    color: var(--white);
    font-size: clamp(1.5rem, 2.4vw, 2.55rem);
    font-weight: 380;
    letter-spacing: -0.035em;
    line-height: 1.13;
}

.groups-feature {
    flex-direction: column;
    background: #dbeee9;
    text-align: center;
}

.avatar-stack {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-stack img,
.avatar-stack > span {
    width: 68px;
    height: 68px;
    margin-left: -12px;
    border: 4px solid #dbeee9;
    border-radius: 50%;
}

.avatar-stack img:first-child { margin-left: 0; }

.avatar-stack > span {
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 700;
}

.group-lines {
    display: flex;
    align-items: center;
    gap: 6px;
}

.group-lines span {
    width: 35px;
    height: 1px;
    background: rgba(16, 36, 47, 0.22);
}

.groups-feature p {
    color: rgba(16, 36, 47, 0.64);
    font-size: 1.05rem;
}

.groups-feature p strong {
    color: var(--navy);
    font-size: 1.6rem;
    font-weight: 480;
    letter-spacing: -0.035em;
}

/* Privacy */
.privacy {
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

.privacy-wave {
    position: absolute;
    width: 850px;
    height: 850px;
    top: -360px;
    left: -210px;
    border: 1px solid rgba(64, 210, 186, 0.14);
    border-radius: 47% 53% 42% 58% / 56% 46% 54% 44%;
    transform: rotate(22deg);
}

.privacy-wave::after {
    position: absolute;
    inset: 110px;
    border: 1px solid rgba(64, 210, 186, 0.09);
    border-radius: inherit;
    content: "";
}

.privacy-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(70px, 11vw, 150px);
}

.privacy-copy {
    position: sticky;
    top: 140px;
    align-self: start;
}

.privacy-copy .eyebrow {
    margin-bottom: 34px;
}

.privacy-copy h2 em {
    color: var(--teal);
}

.privacy-copy > p:not(.eyebrow) {
    max-width: 510px;
    margin-top: 38px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.08rem;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    margin-top: 36px;
    padding-bottom: 7px;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 620;
    transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.privacy-principles ol {
    list-style: none;
}

.privacy-principles li {
    display: grid;
    min-height: 96px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--line-light);
}

.privacy-principles li:last-child {
    border-bottom: 1px solid var(--line-light);
}

.privacy-principles strong {
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.privacy-principles i {
    color: rgba(255, 255, 255, 0.28);
    font-style: normal;
}

/* Bluesky */
.bluesky {
    overflow: hidden;
    background: #eef4f5;
}

.bluesky-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: clamp(60px, 9vw, 140px);
}

.bluesky-visual {
    position: relative;
    height: 730px;
}

.bluesky-visual::before {
    position: absolute;
    width: 620px;
    height: 620px;
    top: 50%;
    left: 48%;
    border: 1px solid rgba(17, 133, 254, 0.16);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}

.bluesky-phone {
    position: absolute;
    z-index: 2;
    width: auto;
    height: 680px;
    bottom: 0;
    left: 50%;
    overflow: visible;
    transform: translateX(-50%);
}

.bluesky-phone img {
    width: auto;
    height: 100%;
    max-width: none;
    filter: drop-shadow(0 25px 25px rgba(16, 36, 47, 0.16));
}

.butterfly-mark {
    position: absolute;
    z-index: 3;
    top: 6%;
    left: 6%;
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(17, 133, 254, 0.13);
}

.butterfly-mark svg {
    width: 45px;
    fill: var(--blue);
}

.bluesky-copy h2 {
    margin-top: 26px;
}

.bluesky-copy h2 em {
    color: var(--blue);
}

.bluesky-copy > p:not(.eyebrow) {
    max-width: 530px;
    margin-top: 34px;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.7;
}

.text-link-dark {
    border-color: rgba(16, 36, 47, 0.25);
    color: var(--navy);
}

.text-link-dark:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* Steps */
.steps {
    background: var(--ivory);
}

.steps-heading {
    display: flex;
    margin-bottom: 70px;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.steps-heading h2 {
    max-width: 870px;
    font-size: clamp(2.8rem, 5vw, 5.35rem);
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.steps-list li {
    display: flex;
    min-height: 510px;
    padding: 28px clamp(24px, 3vw, 42px) 42px;
    flex-direction: column;
    border-right: 1px solid var(--line);
}

.steps-list li:first-child { padding-left: 0; }
.steps-list li:last-child { padding-right: 0; border-right: 0; }

.step-number {
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.step-symbol {
    display: grid;
    width: 120px;
    height: 120px;
    margin: 72px 0 58px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.step-symbol .wave-glyph {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
}

.steps-list h3 {
    font-size: clamp(1.45rem, 2vw, 2.05rem);
    line-height: 1.05;
}

.steps-list p {
    max-width: 310px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.62;
}

.qr-symbol {
    position: relative;
    grid-template-columns: repeat(2, 18px);
    grid-template-rows: repeat(2, 18px);
    gap: 6px;
    align-content: center;
    justify-content: center;
}

.qr-symbol i {
    width: 18px;
    height: 18px;
    border: 4px solid var(--navy);
}

.qr-symbol i:nth-child(4) {
    border-color: var(--teal-dark);
    background: var(--teal);
}

.message-symbol span {
    display: grid;
    width: 58px;
    height: 42px;
    place-items: center;
    border-radius: 18px 18px 18px 4px;
    background: var(--teal);
    color: var(--navy);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    line-height: 1;
}

/* Showcase */
.showcase {
    background: var(--ivory-deep);
}

.showcase-heading {
    display: block;
    margin-bottom: 70px;
}

.showcase-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    gap: 18px;
}

.showcase-lead,
.showcase-index,
.showcase-quote,
.showcase-control {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.showcase-lead {
    min-height: 680px;
    grid-row: auto;
    background: var(--navy);
    color: var(--white);
}

.showcase-lead::after {
    position: absolute;
    width: 550px;
    height: 550px;
    right: -200px;
    bottom: -230px;
    border: 1px solid rgba(64, 210, 186, 0.2);
    border-radius: 50%;
    content: "";
}

.showcase-lead-copy {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: clamp(38px, 5vw, 70px);
}

.showcase-lead-copy > span,
.showcase-control > span {
    color: var(--teal);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.showcase-lead h3 {
    margin-top: 26px;
    font-size: clamp(2.2rem, 3.9vw, 4.5rem);
}

.showcase-lead p {
    max-width: 430px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

.showcase-lead > img {
    position: absolute;
    z-index: 1;
    width: auto;
    height: 440px;
    max-width: none;
    right: 2%;
    bottom: 24px;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.25));
    transform: rotate(5deg);
}

.showcase-index {
    display: flex;
    padding: 38px 40px;
    flex-direction: column;
    background: var(--white);
}

.showcase-index > p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.showcase-index ul {
    display: flex;
    flex: 1;
    flex-direction: column;
    list-style: none;
}

.showcase-index li {
    display: flex;
    min-height: 60px;
    flex: 1;
    align-items: center;
    border-top: 1px solid var(--line);
    font-size: 1.08rem;
    font-weight: 470;
    letter-spacing: -0.015em;
}

.showcase-index li:last-child {
    border-bottom: 1px solid var(--line);
}

.showcase-quote {
    display: flex;
    min-height: 300px;
    padding: 42px;
    flex-direction: column;
    justify-content: space-between;
    background: var(--teal);
}

.showcase-quote > p {
    position: relative;
    z-index: 2;
    max-width: 420px;
    font-size: clamp(1.75rem, 3vw, 3.1rem);
    font-weight: 360;
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.showcase-motif {
    position: absolute;
    right: -30px;
    bottom: -60px;
    width: 260px;
    height: 180px;
}

.showcase-motif i {
    position: absolute;
    inset: auto 0 0;
    height: 140px;
    border: 1px solid rgba(16, 36, 47, 0.2);
    border-radius: 50%;
}

.showcase-motif i:nth-child(2) { bottom: 24px; }
.showcase-motif i:nth-child(3) { bottom: 48px; }
.showcase-motif i:nth-child(4) { bottom: 72px; }

.showcase-control {
    min-height: 390px;
    padding: 48px;
    background: #d7e8e4;
}

.showcase-control h3 {
    margin-top: 24px;
    font-size: clamp(2rem, 3vw, 3.5rem);
}

.control-list {
    position: absolute;
    right: 42px;
    bottom: 42px;
    left: 42px;
}

.control-list > span {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(16, 36, 47, 0.14);
    color: rgba(16, 36, 47, 0.68);
    font-size: 0.78rem;
}

.control-list i {
    position: relative;
    width: 30px;
    height: 16px;
    border-radius: 10px;
    background: var(--teal-dark);
}

.control-list i::after {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    content: "";
}

.control-list b {
    color: var(--teal-dark);
    font-size: 1rem;
    font-weight: 500;
}

/* FAQ */
.faq {
    background: var(--ivory);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.68fr 1.32fr;
    gap: clamp(60px, 10vw, 150px);
}

.faq-heading {
    position: sticky;
    top: 140px;
    align-self: start;
}

.faq-heading h2 {
    margin-top: 26px;
}

.faq-heading > p:last-child {
    max-width: 320px;
    margin-top: 30px;
    color: var(--muted);
    line-height: 1.65;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: grid;
    min-height: 90px;
    padding: 18px 0;
    grid-template-columns: 1fr 28px;
    align-items: center;
    gap: 20px;
    color: var(--ink);
    cursor: pointer;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 470;
    letter-spacing: -0.018em;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary i {
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: var(--ink);
    content: "";
    transition: transform 180ms ease;
}

.faq-list summary i::before { transform: translate(-50%, -50%); }
.faq-list summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }

.faq-list details > p {
    max-width: 650px;
    padding: 0 55px 30px 0;
    color: var(--muted);
    line-height: 1.72;
}

/* Final CTA */
.final-cta {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: var(--navy-soft);
    color: var(--white);
}

.final-wave {
    position: absolute;
    width: 900px;
    height: 500px;
    right: -250px;
    bottom: -200px;
    border: 1px solid rgba(64, 210, 186, 0.16);
    border-radius: 50%;
    transform: rotate(-13deg);
}

.final-wave::before,
.final-wave::after {
    position: absolute;
    inset: 55px;
    border: inherit;
    border-radius: inherit;
    content: "";
}

.final-wave::after { inset: 110px; }

.final-grid {
    position: relative;
    display: grid;
    min-height: 760px;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.final-copy {
    position: relative;
    z-index: 3;
}

.final-copy h2 {
    margin-top: 30px;
    font-size: clamp(3.3rem, 6.5vw, 7rem);
}

.final-copy h2 em { color: var(--teal); }

.final-copy > p:not(.eyebrow) {
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.15rem;
}

.final-copy .button {
    margin-top: 36px;
}

.final-product {
    position: relative;
    height: 760px;
}

.final-product > img {
    position: absolute;
    z-index: 2;
    width: auto;
    height: min(90%, 680px);
    max-width: none;
    right: 6%;
    bottom: 24px;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.26));
    transform: rotate(4deg);
}

/* Footer */
.site-footer {
    padding: 80px 0 calc(28px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--navy);
    color: var(--white);
}

.footer-top {
    display: grid;
    padding-bottom: 75px;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.footer-brand-block img {
    width: 136px;
    height: auto;
}

.footer-brand-block p {
    max-width: 380px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.9rem;
    line-height: 1.65;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-nav div {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer-nav p {
    margin-bottom: 21px;
    color: var(--teal);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-nav a {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    transition: color 180ms ease;
}

.footer-nav a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    padding-top: 24px;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.7rem;
    letter-spacing: 0.03em;
}

.footer-bottom span {
    margin-inline: 9px;
    color: var(--teal);
}

/* Reveal animation: content stays visible without JavaScript */
.is-reveal-ready .reveal {
    --reveal-delay: 0ms;
    opacity: 0;
    transform: translateY(34px) scale(0.992);
    transition: opacity 760ms cubic-bezier(0.2, 0.65, 0.25, 1) var(--reveal-delay), transform 760ms cubic-bezier(0.2, 0.65, 0.25, 1) var(--reveal-delay);
    will-change: opacity, transform;
}

.is-reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.is-reveal-ready .story.reveal .story-copy,
.is-reveal-ready .story.reveal .product-stage,
.is-reveal-ready .story.reveal .editorial-feature {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease 120ms, transform 620ms cubic-bezier(0.2, 0.65, 0.25, 1) 120ms;
}

.is-reveal-ready .story.reveal .product-stage,
.is-reveal-ready .story.reveal .editorial-feature {
    transition-delay: 220ms;
}

.is-reveal-ready .story.reveal.is-visible .story-copy,
.is-reveal-ready .story.reveal.is-visible .product-stage,
.is-reveal-ready .story.reveal.is-visible .editorial-feature {
    opacity: 1;
    transform: translateY(0);
}

.hero-copy > *,
.hero-product {
    animation: hero-in 800ms cubic-bezier(0.2, 0.65, 0.25, 1) both;
}

.hero-copy > :nth-child(1) { animation-delay: 100ms; }
.hero-copy > :nth-child(2) { animation-delay: 180ms; }
.hero-copy > :nth-child(3) { animation-delay: 260ms; }
.hero-copy > :nth-child(4) { animation-delay: 340ms; }
.hero-copy > :nth-child(5) { animation-delay: 420ms; }
.hero-product { animation-delay: 220ms; }

@keyframes hero-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes trust-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Existing legal pages */
.header {
    display: flex;
    min-height: 90px;
    padding: calc(22px + env(safe-area-inset-top)) max(var(--gutter), env(safe-area-inset-right)) 22px max(var(--gutter), env(safe-area-inset-left));
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
}

.logo-centered {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    width: 132px;
    height: auto;
}

.legal-content {
    background: var(--ivory);
}

.back-link {
    transition: color 180ms ease;
}

.footer {
    padding: 58px 0 calc(24px + env(safe-area-inset-bottom));
    background: var(--navy);
    color: var(--white);
}

.footer .footer-content {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

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

.footer .footer-logo {
    width: 120px;
    height: auto;
}

.footer .footer-brand > p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.footer-social {
    display: flex;
    margin-top: 20px;
    gap: 18px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.58);
    transition: color 180ms ease;
}

.footer-social a:hover { color: var(--teal); }

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer .footer-links {
    display: flex;
    gap: 24px;
}

.footer .footer-links a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.85rem;
}

.footer .footer-links a:hover { color: var(--white); }

.footer .footer-bottom {
    width: 100%;
    color: rgba(255, 255, 255, 0.38);
}

/* Tablet */
@media (max-width: 1080px) {
    .site-header { height: calc(76px + env(safe-area-inset-top)); }
    .hero { padding-top: calc(76px + env(safe-area-inset-top)); min-height: 900px; }
    .primary-nav { gap: 18px; }
    .primary-nav > a { font-size: 0.78rem; }
    .hero-grid { min-height: 760px; grid-template-columns: 0.92fr 0.82fr; }
    .phone-primary { right: -60px; width: 430px; }
    .phone-secondary { right: 37%; width: 315px; }
    .story { grid-template-columns: 0.8fr 1.2fr; gap: 55px; }
    .story-reverse { grid-template-columns: 1.2fr 0.8fr; }
    .product-stage { height: 610px; }
    .editorial-feature { padding: 38px; gap: 36px; }
    .timer-ring { width: 155px; height: 155px; flex-basis: 155px; }
    .bluesky-visual { height: 640px; }
    .bluesky-phone { height: 610px; }
    .showcase-lead { min-height: 680px; }
}

/* Mobile navigation and layouts */
@media (max-width: 820px) {
    :root {
        --section-space: 100px;
    }

    html { scroll-padding-top: calc(76px + env(safe-area-inset-top)); }
    h1 { font-size: clamp(3.3rem, 13.5vw, 5.5rem); }
    h2 { font-size: clamp(2.65rem, 10vw, 4.7rem); }
    .nav-toggle { display: flex; }
    .primary-nav {
        position: fixed;
        inset: calc(75px + env(safe-area-inset-top)) 0 auto;
        display: flex;
        height: calc(100dvh - 75px - env(safe-area-inset-top));
        padding: 48px max(var(--gutter), env(safe-area-inset-right)) calc(36px + env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-left));
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        visibility: hidden;
        background: var(--navy);
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
    }
    .site-header.is-open .primary-nav {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    .primary-nav > a {
        display: flex;
        min-height: 58px;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white);
        font-size: 1.3rem;
        font-weight: 400;
    }
    .primary-nav > a:not(.nav-download)::after { display: none; }
    .primary-nav .nav-download {
        width: fit-content;
        min-height: 58px;
        margin-top: auto;
        padding-inline: 22px;
        align-self: flex-start;
        justify-content: center;
        gap: 12px;
        border-color: var(--teal);
        color: var(--teal);
        font-size: 1rem;
    }
    .no-js .nav-toggle { display: none; }
    .no-js .primary-nav {
        position: static;
        display: flex;
        width: auto;
        height: auto;
        padding: 0;
        visibility: visible;
        flex-direction: row;
        background: none;
        opacity: 1;
        transform: none;
    }
    .no-js .primary-nav > a:not(.nav-download) { display: none; }
    .no-js .primary-nav .nav-download { min-height: 42px; margin: 0; padding: 0 14px; }

    .hero { min-height: auto; }
    .hero-grid {
        min-height: auto;
        padding-top: 86px;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-copy { max-width: 720px; padding-bottom: 0; }
    .hero-lede { max-width: 600px; }
    .hero-product { width: min(100%, 620px); height: 720px; margin-inline: auto; }
    .phone-primary { right: 1%; bottom: -20px; width: min(62vw, 390px); }
    .phone-secondary { right: auto; bottom: 40px; left: 2%; width: min(48vw, 305px); }

    .intro-grid,
    .showcase-heading {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .intro-copy { margin-top: 46px; }
    .zero-spam-panel { grid-template-columns: 1fr; gap: 30px; }
    .spam-visual { min-height: 230px; }
    .section-heading { align-items: start; flex-direction: column; }
    .section-heading > p { max-width: 500px; }

    .story,
    .story-reverse {
        min-height: 0;
        padding-block: 70px;
        grid-template-columns: 1fr;
        gap: 46px;
    }
    .story-reverse .story-copy { order: 0; }
    .story-copy { max-width: 620px; }
    .product-stage { height: min(94vw, 650px); }
    .product-stage > img { width: min(57%, 390px); }
    .stage-chat > img { top: 50%; right: 6%; bottom: auto; width: auto; height: calc(100% - 64px); transform: translateY(-50%); }
    .stage-media > img,
    .stage-profile > img { top: 50%; right: auto; bottom: auto; left: 50%; width: auto; height: calc(100% - 64px); transform: translate(-50%, -50%); }
    .story-compact { min-height: 0; }
    .editorial-feature { min-height: 370px; }

    .privacy-grid,
    .bluesky-grid,
    .faq-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }
    .privacy-copy,
    .faq-heading { position: static; }
    .bluesky-copy { order: -1; }
    .bluesky-visual { width: min(100%, 650px); margin-inline: auto; }
    .steps-heading { align-items: start; flex-direction: column; }
    .steps-list { grid-template-columns: 1fr; }
    .steps-list li,
    .steps-list li:first-child,
    .steps-list li:last-child {
        display: grid;
        min-height: 0;
        padding: 34px 0;
        grid-template-columns: 40px 100px 1fr;
        align-items: center;
        gap: 22px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .steps-list li:last-child { border-bottom: 0; }
    .step-symbol { width: 90px; height: 90px; margin: 0; }
    .steps-list p { margin-top: 10px; }

    .showcase-layout { grid-template-columns: 1fr; grid-template-rows: auto; }
    .showcase-lead { min-height: 700px; grid-row: auto; }
    .showcase-lead > img { width: auto; height: 400px; right: 24px; bottom: 20px; }
    .showcase-quote { min-height: 260px; }
    .final-grid { min-height: 760px; grid-template-columns: 1fr 0.65fr; }
    .final-product > img { width: auto; height: min(90%, 680px); max-width: none; right: -60px; bottom: 24px; }
    .footer-top { gap: 55px; }
}

@media (max-width: 600px) {
    :root {
        --gutter: 20px;
        --section-space: 86px;
    }
    .brand img { width: 112px; }
    .hero-grid { padding-top: 24px; }
    .hero-copy { display: flex; min-width: 0; flex-direction: column; }
    .hero-copy .eyebrow { display: none; }
    .hero-atmosphere {
        background: radial-gradient(circle at 50% 78%, rgba(64, 210, 186, 0.2), transparent 34%);
    }
    .hero-atmosphere::after { display: none; }
    .hero-lede { margin-top: 24px; font-size: 1rem; }
    .hero-actions { margin-top: 30px; }
    .button { width: fit-content; }
    .trust-line {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin: 0 0 30px;
        padding-block: 10px;
        order: -1;
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
        mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }
    .trust-track {
        display: flex;
        width: max-content;
        animation: trust-scroll 20s linear infinite;
    }
    .trust-group,
    .trust-group[aria-hidden="true"] {
        display: flex;
        padding-right: 28px;
        flex: none;
        flex-wrap: nowrap;
        align-items: center;
        gap: 24px;
    }
    .trust-group span {
        display: inline-flex;
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.67rem;
        letter-spacing: 0.07em;
        white-space: nowrap;
    }
    .trust-group span::before {
        width: 5px;
        height: 5px;
        margin-right: 9px;
        flex: 0 0 5px;
        border-radius: 50%;
        background: var(--teal);
        content: "";
    }
    .trust-group span::after { display: none; }
    .hero-copy > .trust-line { animation-delay: 80ms; }
    .hero-product { height: 570px; }
    .phone-primary { right: 0; bottom: 10px; width: min(78vw, 280px); }
    .phone-secondary { bottom: 64px; left: 0; width: min(58vw, 210px); }
    .hero-orbit-one { width: 470px; height: 470px; right: -170px; }
    .hero-orbit-two { width: 330px; height: 330px; }
    .section-heading { padding-bottom: 48px; }
    .zero-spam-panel { min-height: 0; padding: 32px 26px 40px; }
    .spam-visual { min-height: 190px; }
    .spam-rings { width: 180px; height: 180px; }
    .story { padding-block: 58px; }
    .story-copy > p { margin-top: 20px; }
    .product-stage { height: 500px; }
    .product-stage > img { right: 0; bottom: -85px; width: 300px; }
    .stage-chat > img { top: 50%; right: 4%; bottom: auto; width: auto; height: calc(100% - 52px); transform: translateY(-50%); }
    .stage-media > img,
    .stage-profile > img { top: 50%; right: auto; bottom: auto; left: 50%; width: auto; height: calc(100% - 52px); transform: translate(-50%, -50%); }
    .editorial-feature { min-height: 340px; padding: 26px; flex-direction: column; gap: 24px; }
    .timer-ring { width: 130px; height: 130px; flex-basis: 130px; }
    .editorial-feature-copy { text-align: center; }
    .privacy-grid { gap: 64px; }
    .privacy-principles li { min-height: 84px; grid-template-columns: 1fr auto; gap: 12px; }
    .bluesky-grid { gap: 50px; }
    .bluesky-visual { height: 550px; }
    .bluesky-phone { top: 0; width: auto; height: 525px; bottom: auto; }
    .bluesky-visual::before { width: 480px; height: 480px; }
    .butterfly-mark { top: 2%; left: 0; width: 72px; height: 72px; }
    .butterfly-mark svg { width: 38px; }

    .steps-heading { margin-bottom: 48px; }
    .steps-list li,
    .steps-list li:first-child,
    .steps-list li:last-child {
        grid-template-columns: 32px 70px 1fr;
        gap: 14px;
    }
    .step-symbol { width: 64px; height: 64px; }
    .step-symbol .wave-glyph { width: 38px; height: 38px; font-size: 0.8rem; }
    .qr-symbol { grid-template-columns: repeat(2, 11px); grid-template-rows: repeat(2, 11px); gap: 4px; }
    .qr-symbol i { width: 11px; height: 11px; border-width: 2px; }
    .message-symbol span { width: 42px; height: 30px; border-radius: 13px 13px 13px 3px; font-size: 0.78rem; }
    .steps-list h3 { font-size: 1.25rem; }
    .steps-list p { font-size: 0.83rem; }

    .showcase-heading { margin-bottom: 48px; }
    .showcase-lead { min-height: 650px; }
    .showcase-lead-copy { padding: 34px 28px; }
    .showcase-lead > img { width: auto; height: 340px; max-width: none; right: 20px; bottom: 16px; }
    .showcase-index { padding: 30px 26px; }
    .showcase-quote,
    .showcase-control { padding: 32px 28px; }
    .showcase-control { min-height: 360px; }
    .control-list { right: 28px; bottom: 28px; left: 28px; }
    .faq-grid { gap: 54px; }
    .faq-list summary { min-height: 78px; }

    .final-cta { min-height: 0; padding: 86px 0 104px; }
    .final-grid { min-height: 0; grid-template-columns: 1fr; align-items: start; }
    .final-copy > p:not(.eyebrow) { margin-top: 22px; }
    .final-copy .button { width: auto; }
    .final-product { display: none; }

    .site-footer { padding-top: 62px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 38px 24px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; }

    .footer .footer-content { align-items: flex-start; flex-direction: column; }
    .footer .footer-links { flex-direction: column; gap: 12px; }
}

@media (max-width: 380px) {
    h1 { font-size: 3rem; }
    .hero-product { height: 520px; }
    .phone-primary { right: 0; width: min(78vw, 280px); }
    .phone-secondary { left: 0; width: min(58vw, 210px); }
    .footer-nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .is-reveal-ready .reveal {
        opacity: 1;
        transform: none;
    }
    .is-reveal-ready .story.reveal .story-copy,
    .is-reveal-ready .story.reveal .product-stage,
    .is-reveal-ready .story.reveal .editorial-feature {
        opacity: 1;
        transform: none;
    }
    .trust-line {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
        scrollbar-width: none;
    }
    .trust-track { animation: none !important; }
    .trust-group[aria-hidden="true"] { display: none; }
}
