:root {
    color-scheme: light;
    --ink: #111113;
    --muted: #6e6e73;
    --line: rgba(17, 17, 19, 0.09);
    --blue: #087bd2;
    --blue-deep: #075a9e;
    --surface: #f5f5f7;
    --card: #fff;
    --radius-lg: 42px;
    --radius-md: 28px;
    --shadow: 0 30px 80px rgba(15, 39, 66, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:focus-visible {
    outline: 3px solid rgba(8, 123, 210, 0.48);
    outline-offset: 4px;
    border-radius: 8px;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    transform: translateY(-150%);
}

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

.shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.narrow {
    max-width: 980px;
    text-align: center;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 14px;
    right: 0;
    left: 0;
    pointer-events: none;
}

.nav {
    height: 58px;
    padding: 0 12px 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 35px rgba(18, 40, 62, 0.08);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    pointer-events: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-size: 17px;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.brand img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(72, 46, 28, 0.18);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 13px;
    color: #434347;
}

.nav-links a,
footer a,
.text-link {
    transition: color 180ms ease;
}

.nav-links a:hover,
footer a:hover,
.text-link:hover {
    color: var(--blue);
}

.nav-download {
    justify-self: end;
    padding: 9px 17px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: transform 180ms ease, background 180ms ease;
}

.nav-download:hover {
    background: var(--blue-deep);
    transform: scale(1.025);
}

.hero {
    position: relative;
    min-height: 940px;
    padding: 155px 0 60px;
    background:
        radial-gradient(circle at 70% 48%, rgba(155, 222, 255, 0.35), transparent 30%),
        linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
    overflow: hidden;
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 180px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.8));
    content: "";
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
    gap: 50px;
    align-items: center;
}

.hero-copy {
    padding-top: 10px;
}

.eyebrow {
    margin: 0 0 21px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 650;
    letter-spacing: -0.01em;
}

.hero h1 {
    max-width: 690px;
    margin: 0;
    font-size: clamp(58px, 6.1vw, 88px);
    font-weight: 700;
    letter-spacing: -0.067em;
    line-height: 0.96;
}

.hero h1 span,
.section-title span {
    color: #9a9aa0;
}

.hero-lede {
    max-width: 590px;
    margin: 32px 0 0;
    color: var(--muted);
    font-size: 21px;
    line-height: 1.48;
    letter-spacing: -0.018em;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 34px;
}

.app-store-button {
    width: 188px;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    line-height: 0;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.app-store-button img {
    display: block;
    width: 100%;
    height: auto;
}

.app-store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 17px 32px rgba(0, 0, 0, 0.2);
}

.text-link {
    color: #2b2b2f;
    font-size: 15px;
    font-weight: 590;
}

.text-link span {
    display: inline-block;
    margin-left: 5px;
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateY(3px);
}

.app-proof {
    margin-top: 19px;
    color: #7c7c82;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.proof-stars {
    color: #f2a400;
    font-size: 11px;
    letter-spacing: 0.04em;
}

.app-proof strong {
    color: #3b3b3f;
    font-weight: 650;
}

.app-proof i {
    width: 3px;
    height: 3px;
    margin-inline: 3px;
    border-radius: 50%;
    background: #b7b7bc;
}

.hero-product {
    position: relative;
    min-height: 710px;
    display: grid;
    place-items: center;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.65;
}

.hero-glow-one {
    top: -260px;
    right: -240px;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(255, 206, 166, 0.42), transparent 68%);
}

.hero-glow-two {
    bottom: -280px;
    left: -300px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 202, 255, 0.25), transparent 67%);
}

.orbit {
    position: absolute;
    border: 1px solid rgba(8, 123, 210, 0.11);
    border-radius: 50%;
}

.orbit-one {
    width: 625px;
    height: 625px;
}

.orbit-two {
    width: 485px;
    height: 485px;
}

.phone {
    position: relative;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 52px;
    background: linear-gradient(145deg, #343438, #08080a 48%, #2f3033);
    box-shadow:
        0 45px 100px rgba(20, 45, 70, 0.22),
        0 8px 24px rgba(16, 32, 50, 0.16),
        inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.phone-hero {
    z-index: 3;
    width: 344px;
    transform: rotate(2deg);
    animation: phone-float 7s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: auto;
    border-radius: 44px;
    overflow: hidden;
    background: #f5f5f7;
}

.phone-screen img {
    display: block;
    width: 100%;
    height: auto;
}

.floating-card {
    position: absolute;
    z-index: 5;
    min-width: 250px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 44px rgba(37, 61, 84, 0.15);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: -0.01em;
}

.floating-card small {
    display: block;
    margin-bottom: 3px;
    color: #73737a;
    font-size: 11px;
    font-weight: 520;
}

.card-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    flex: 0 0 34px;
}

.sparkles {
    background: #e8dcff;
    color: #6e39c7;
}

.check {
    background: #dff8e6;
    color: #1d9b4f;
}

.ai-card {
    top: 148px;
    right: -22px;
    animation: card-float 6s ease-in-out 0.5s infinite;
}

.confidence {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 999px;
    background: #e9f8ee;
    color: #228e4b;
    font-size: 10px;
}

.update-card {
    bottom: 125px;
    left: -48px;
    animation: card-float 6.5s ease-in-out 1.2s infinite;
}

.update-card time {
    margin-left: auto;
    color: #85858b;
    font-size: 10px;
    font-weight: 500;
}

.carrier-strip {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(17, 17, 19, 0.05);
    border-bottom: 1px solid rgba(17, 17, 19, 0.05);
    background: #fff;
}

.carrier-strip .shell {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carrier-strip p {
    margin: 0;
    color: #9b9ba1;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.carrier-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #4c4c50;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.carrier-list strong {
    color: var(--blue);
    font-weight: 650;
}

.section {
    padding: 140px 0;
}

#features,
#how-it-works {
    scroll-margin-top: 90px;
}

.intro {
    background: #fff;
}

.section-title {
    margin: 0;
    font-size: clamp(43px, 5.3vw, 74px);
    font-weight: 690;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.section-lede {
    max-width: 720px;
    margin: 28px auto 0;
    color: var(--muted);
    font-size: 20px;
    letter-spacing: -0.015em;
    line-height: 1.5;
}

.bento-grid {
    margin-top: 86px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 650px;
    gap: 22px;
}

.bento-card {
    position: relative;
    border: 1px solid rgba(17, 17, 19, 0.045);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
}

.card-copy {
    position: relative;
    z-index: 3;
    padding: 46px 46px 0;
}

.feature-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 30px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-style: normal;
}

.feature-icon-purple {
    background: #eee5ff;
    color: #7847d2;
}

.feature-icon-blue {
    background: #dff1ff;
    color: #0e78bd;
}

.feature-icon-green {
    background: #e0f7e6;
    color: #209f50;
}

.feature-icon-orange {
    background: #fff0df;
    color: #d8761d;
}

.card-kicker {
    margin: 0 0 7px;
    color: #6c6c72;
    font-size: 13px;
    font-weight: 650;
}

.bento-card h3 {
    max-width: 470px;
    margin: 0;
    font-size: 35px;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.bento-card .card-copy > p:last-child {
    max-width: 450px;
    margin: 16px 0 0;
    color: #74747a;
    font-size: 16px;
    line-height: 1.48;
}

.bento-ai {
    background:
        radial-gradient(circle at 75% 82%, rgba(151, 108, 246, 0.2), transparent 38%),
        #f6f3fb;
}

.ai-demo {
    position: absolute;
    right: 46px;
    bottom: -15px;
    left: 46px;
    padding: 24px;
    border: 1px solid rgba(116, 73, 190, 0.15);
    border-radius: 28px 28px 0 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 25px 60px rgba(70, 45, 110, 0.12);
}

.ai-demo-top {
    padding: 0 2px 20px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 9px;
}

.ai-demo-top span {
    color: #7646cd;
}

.ai-demo-top strong {
    font-size: 16px;
}

.ai-demo-top i {
    width: 20px;
    height: 20px;
    margin-left: auto;
    border: 1px solid #aaaab0;
    border-radius: 50%;
    color: #85858b;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-style: normal;
}

.estimate-row {
    padding: 18px 3px;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
}

.estimate-row:last-child {
    border-bottom: 0;
}

.estimate-logo {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: grid;
    place-items: center;
}

.estimate-logo.orange {
    background: #fff0df;
    color: #dd7b20;
}

.estimate-logo.purple {
    background: #eee5ff;
    color: #7543ce;
}

.estimate-row small,
.estimate-row strong {
    display: block;
}

.estimate-row small {
    margin-bottom: 2px;
    color: #77777d;
    font-size: 11px;
}

.estimate-row strong {
    font-size: 17px;
}

.estimate-row em {
    color: #919197;
    font-size: 10px;
    font-style: normal;
}

.bento-live {
    background:
        radial-gradient(circle at 50% 110%, rgba(23, 148, 226, 0.25), transparent 45%),
        #eef7fc;
}

.cropped-phone {
    position: absolute;
    top: 292px;
    right: 70px;
    bottom: auto;
    left: 70px;
    padding: 6px;
    border-radius: 42px 42px 0 0;
    background: #0d0d0f;
    box-shadow: 0 25px 60px rgba(17, 88, 133, 0.17);
    overflow: hidden;
}

.cropped-phone img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 36px 36px 0 0;
}

.bento-alerts {
    background:
        radial-gradient(circle at 50% 80%, rgba(53, 202, 112, 0.16), transparent 45%),
        #f1f8f3;
}

.notification-stack {
    position: absolute;
    right: 34px;
    bottom: 52px;
    left: 34px;
}

.notification {
    position: relative;
    z-index: 2;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 45px rgba(41, 80, 52, 0.12);
    backdrop-filter: blur(22px);
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.notification img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.notification small,
.notification strong,
.notification em {
    display: block;
}

.notification small {
    margin-bottom: 6px;
    color: #85858b;
    font-size: 9px;
    font-weight: 650;
    letter-spacing: 0.04em;
}

.notification strong {
    margin-bottom: 3px;
    font-size: 15px;
}

.notification em {
    color: #6d6d72;
    font-size: 13px;
    font-style: normal;
}

.notification.second {
    z-index: 1;
    margin: -5px 28px 0;
    opacity: 0.67;
    transform: scale(0.94);
}

.bento-carriers {
    background:
        radial-gradient(circle at 78% 80%, rgba(232, 152, 77, 0.2), transparent 40%),
        #fbf6ef;
}

.tracking-field {
    position: absolute;
    right: 46px;
    bottom: 146px;
    left: 46px;
    min-height: 68px;
    padding: 0 18px;
    border: 1px solid rgba(104, 77, 48, 0.09);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 16px 40px rgba(100, 69, 36, 0.09);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.tracking-field > span {
    color: #a0a0a5;
    font-size: 20px;
}

.tracking-field strong {
    font-size: 16px;
    letter-spacing: 0.01em;
}

.tracking-field i {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ddf5e4;
    color: #229e4f;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-style: normal;
}

.detected-carrier {
    position: absolute;
    right: 46px;
    bottom: 60px;
    left: 46px;
    padding: 17px 20px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.62);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #88888e;
    font-size: 12px;
}

.detected-carrier strong {
    color: #36363a;
    font-size: 17px;
}

.details-showcase {
    background: var(--surface);
}

.details-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 100px;
    align-items: center;
}

.details-visual {
    position: relative;
    min-height: 760px;
}

.phone-detail {
    position: absolute;
    width: 305px;
    border-radius: 47px;
}

.phone-detail .phone-screen {
    border-radius: 39px;
}

.phone-back {
    top: 10px;
    left: 0;
    transform: rotate(-7deg);
}

.phone-front {
    right: 5px;
    bottom: 0;
    transform: rotate(5deg);
}

.details-copy .section-title {
    font-size: clamp(48px, 5.1vw, 72px);
}

.details-copy .section-lede {
    margin-left: 0;
    font-size: 18px;
}

.detail-list {
    margin: 44px 0 0;
    padding: 0;
    list-style: none;
}

.detail-list li {
    padding: 20px 0;
    border-top: 1px solid rgba(17, 17, 19, 0.1);
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
}

.detail-list li:last-child {
    border-bottom: 1px solid rgba(17, 17, 19, 0.1);
}

.detail-list li > span {
    padding-top: 2px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
}

.detail-list p {
    margin: 0;
    color: #77777d;
    font-size: 14px;
    line-height: 1.5;
}

.detail-list strong {
    display: block;
    margin-bottom: 2px;
    color: #252529;
    font-size: 15px;
}

.how {
    background: #fff;
}

.how-heading {
    max-width: 850px;
}

.steps {
    margin: 80px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
}

.steps li {
    position: relative;
    min-height: 380px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: #fbfbfd;
}

.step-number {
    color: #9a9aa0;
    font-size: 11px;
    font-weight: 650;
}

.step-icon {
    width: 76px;
    height: 76px;
    margin: 58px 0 52px;
    border-radius: 23px;
    background: #e9f4fb;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 29px;
}

.steps li:nth-child(2) .step-icon {
    background: #eee8fa;
    color: #7042bf;
}

.steps li:nth-child(3) .step-icon {
    background: #e3f6e8;
    color: #249b50;
}

.steps h3 {
    margin: 0 0 10px;
    font-size: 23px;
    letter-spacing: -0.035em;
}

.steps p {
    max-width: 270px;
    margin: 0;
    color: #74747a;
    font-size: 15px;
    line-height: 1.5;
}

.learn {
    background:
        radial-gradient(circle at 8% 15%, rgba(130, 202, 245, 0.14), transparent 28rem),
        #f5f5f7;
}

.learn-heading {
    margin-bottom: 66px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
    gap: 80px;
    align-items: end;
}

.learn-heading .eyebrow {
    margin-bottom: 18px;
}

.learn-heading > p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.learn-card {
    min-height: 330px;
    padding: 40px;
    border: 1px solid rgba(17, 17, 19, 0.055);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.91);
    box-shadow: 0 18px 45px rgba(18, 40, 62, 0.055);
    display: flex;
    flex-direction: column;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.learn-card:hover {
    border-color: rgba(8, 123, 210, 0.14);
    box-shadow: 0 24px 58px rgba(18, 40, 62, 0.1);
    transform: translateY(-4px);
}

.learn-card > span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 680;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.learn-card h3 {
    max-width: 470px;
    margin: 28px 0 15px;
    font-size: 30px;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.learn-card p {
    max-width: 480px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.58;
}

.learn-card strong {
    margin-top: auto;
    padding-top: 34px;
    color: #2f3034;
    font-size: 14px;
    font-weight: 640;
}

.learn-card strong i {
    margin-left: 4px;
    font-style: normal;
    transition: margin-left 180ms ease;
}

.learn-card:hover strong i {
    margin-left: 9px;
}

.learn-card-wide {
    min-height: 280px;
    grid-column: 1 / -1;
    background:
        radial-gradient(circle at 90% 0%, rgba(83, 178, 234, 0.13), transparent 24rem),
        rgba(255, 255, 255, 0.94);
}

.faq {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
    gap: 100px;
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 110px;
}

.faq-heading > p:last-child {
    max-width: 420px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

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

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

.faq-list summary {
    padding: 30px 0;
    color: #252529;
    display: grid;
    grid-template-columns: 1fr 28px;
    gap: 24px;
    align-items: center;
    cursor: pointer;
    font-size: 19px;
    font-weight: 640;
    letter-spacing: -0.025em;
    list-style: none;
}

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

.faq-list summary span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #edf6fc;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 400;
    transition: transform 180ms ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 700px;
    margin: -9px 54px 29px 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.68;
}

.final-cta {
    padding-top: 40px;
}

.download-panel {
    position: relative;
    min-height: 650px;
    padding: 90px 40px;
    border-radius: 48px;
    background:
        radial-gradient(circle at 18% 0%, rgba(100, 197, 255, 0.72), transparent 38%),
        radial-gradient(circle at 95% 100%, rgba(85, 118, 221, 0.42), transparent 38%),
        linear-gradient(145deg, #117fc6, #07558e);
    color: #fff;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(8, 85, 142, 0.25);
}

.download-panel::before,
.download-panel::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    content: "";
}

.download-panel::before {
    top: -260px;
    left: 50%;
    width: 760px;
    height: 760px;
    transform: translateX(-50%);
}

.download-panel::after {
    top: -150px;
    left: 50%;
    width: 540px;
    height: 540px;
    transform: translateX(-50%);
}

.download-icon,
.download-panel > * {
    position: relative;
    z-index: 1;
}

.download-icon {
    margin: 0 auto 35px;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(21, 41, 67, 0.28);
}

.download-panel .eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.download-panel h2 {
    margin: 0;
    font-size: clamp(50px, 6vw, 78px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.download-panel > p:not(.eyebrow) {
    margin: 23px 0 30px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
}

.panel-note {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
}

footer {
    padding: 30px 0 60px;
}

.footer-grid {
    padding-top: 30px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1.2fr auto;
    gap: 30px;
    align-items: center;
    color: #7b7b80;
    font-size: 12px;
}

.footer-brand {
    color: #232327;
}

.footer-grid p {
    margin: 0;
}

.footer-grid nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 24px;
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 14px;
    color: #aaaab0;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes phone-float {
    0%, 100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(1deg) translateY(-12px); }
}

@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 1000px) {
    .hero {
        padding-top: 140px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        max-width: 790px;
        margin-inline: auto;
    }

    .hero-lede {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .app-proof {
        justify-content: center;
    }

    .hero-product {
        margin-top: -10px;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .details-copy {
        max-width: 720px;
    }

    .details-visual {
        width: min(650px, 100%);
        margin-inline: auto;
    }

    .learn-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .faq-heading {
        position: static;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 28px, 640px);
    }

    .site-header {
        top: 9px;
    }

    .nav {
        height: 54px;
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        display: none;
    }

    .nav-download {
        grid-column: 2;
    }

    .hero {
        min-height: auto;
        padding: 125px 0 20px;
    }

    .hero-grid {
        gap: 25px;
    }

    .hero h1 {
        font-size: clamp(49px, 14.5vw, 70px);
    }

    .hero-lede {
        margin-top: 24px;
        font-size: 18px;
        line-height: 1.5;
    }

    .hero-actions {
        flex-direction: column;
        gap: 18px;
        margin-top: 28px;
    }

    .hero-product {
        min-height: 625px;
        margin-top: 18px;
        transform: scale(0.9);
    }

    .phone-hero {
        width: 315px;
    }

    .ai-card {
        top: 130px;
        right: -20px;
    }

    .update-card {
        bottom: 92px;
        left: -20px;
    }

    .orbit-one {
        width: 520px;
        height: 520px;
    }

    .orbit-two {
        width: 420px;
        height: 420px;
    }

    .carrier-strip .shell {
        min-height: 185px;
    }

    .carrier-list {
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 26px;
        row-gap: 16px;
        font-size: 15px;
    }

    .section {
        padding: 95px 0;
    }

    .section-title {
        font-size: clamp(42px, 12vw, 58px);
    }

    .section-lede {
        font-size: 18px;
    }

    .bento-grid {
        margin-top: 60px;
        grid-template-columns: 1fr;
        grid-auto-rows: 590px;
        gap: 16px;
    }

    .bento-card {
        border-radius: 32px;
    }

    .card-copy {
        padding: 34px 28px 0;
    }

    .feature-icon {
        margin-bottom: 24px;
    }

    .bento-card h3 {
        font-size: 31px;
    }

    .ai-demo,
    .tracking-field,
    .detected-carrier {
        right: 24px;
        left: 24px;
    }

    .estimate-row em {
        display: none;
    }

    .cropped-phone {
        top: 305px;
        right: 42px;
        bottom: auto;
        left: 42px;
    }

    .notification-stack {
        right: 18px;
        bottom: 40px;
        left: 18px;
    }

    .details-visual {
        min-height: 590px;
    }

    .phone-detail {
        width: 245px;
    }

    .phone-front {
        right: 0;
    }

    .details-copy .section-title {
        font-size: 50px;
    }

    .steps {
        margin-top: 55px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .steps li {
        min-height: auto;
        padding: 28px;
        display: grid;
        grid-template-columns: 72px 1fr;
        grid-template-rows: auto auto;
        column-gap: 20px;
        align-items: center;
    }

    .step-number {
        position: absolute;
        top: 22px;
        right: 24px;
    }

    .step-icon {
        grid-row: 1 / 3;
        width: 64px;
        height: 64px;
        margin: 0;
        border-radius: 20px;
    }

    .steps h3 {
        align-self: end;
    }

    .steps p {
        align-self: start;
    }

    .learn-heading {
        margin-bottom: 45px;
    }

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

    .learn-card {
        min-height: 300px;
        padding: 32px 28px;
        border-radius: 28px;
    }

    .learn-card-wide {
        grid-column: auto;
    }

    .learn-card h3 {
        font-size: 27px;
    }

    .faq-list summary {
        padding: 25px 0;
        font-size: 17px;
    }

    .faq-list details p {
        margin-right: 8px;
    }

    .final-cta {
        padding-top: 10px;
    }

    .download-panel {
        min-height: 600px;
        padding: 72px 22px;
        border-radius: 34px;
    }

    .download-panel h2 {
        font-size: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr auto;
    }

    .footer-grid > p:first-of-type {
        display: none;
    }

    .footer-grid nav {
        justify-content: flex-end;
        gap: 16px 20px;
    }
}

@media (max-width: 430px) {
    .hero-product {
        left: 50%;
        width: 115%;
        transform: translateX(-50%) scale(0.83);
    }

    .floating-card {
        min-width: 225px;
    }

    .app-proof {
        flex-wrap: wrap;
    }

    .app-proof i {
        display: none;
    }

    .details-visual {
        min-height: 520px;
    }

    .phone-detail {
        width: 216px;
    }

    .phone-back {
        left: 8px;
    }

    .phone-front {
        right: 8px;
    }

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

    .footer-grid nav {
        grid-row: 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
