/* ============================================================
   TOKENS
============================================================ */
:root {
    --adobe: #F2EDE5;
    --adobe-mid: #E8E0D4;
    --adobe-deep: #D9CFC0;
    --river: #1B3D5C;
    --river-mid: #234E72;
    --river-light: #2E6A94;
    --river-pale: #E8EFF6;
    --river-tint: #D4E3EF;
    --sienna: #C4622D;
    --sienna-lt: #D4784A;
    --sienna-pale: #FAF0EA;
    --white: #FFFFFF;
    --ink: #0F1E2C;
    --stone: #5C6E7D;
    --stone-lt: #96A8B5;

    --sh-xs: 0 1px 5px rgba(15, 30, 44, 0.05);
    --sh-sm: 0 3px 14px rgba(15, 30, 44, 0.08);
    --sh-md: 0 8px 32px rgba(15, 30, 44, 0.10);
    --sh-lg: 0 18px 56px rgba(15, 30, 44, 0.12);

    --r: 12px;
    --r-lg: 22px;
    --r-pill: 100px;
    --mw: 1080px;
    --ease: 0.23s cubic-bezier(.4, 0, .2, 1);
}

/* ============================================================
   RESET
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--adobe);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ============================================================
   TYPE
============================================================ */
h1,
h2,
h3 {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.15;
    color: var(--river);
}

h1 {
    font-size: clamp(2rem, 4.6vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.7rem, 3.3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
}

h3 {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 700;
}

p {
    color: var(--stone);
    line-height: 1.78;
    margin-bottom: 12px;
}

.kicker {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sienna);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.kicker::before {
    content: '';
    width: 18px;
    height: 1.5px;
    background: var(--sienna);
    flex-shrink: 0;
}

.kicker-c {
    justify-content: center;
}

.kicker-inv {
    color: rgba(255, 255, 255, 0.45);
}

.kicker-inv::before {
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   DOCK LINE - signature element
============================================================ */
.dock-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px 0;
}

.dock-line::before,
.dock-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--adobe-deep);
}

.dock-line-center {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sienna);
    flex-shrink: 0;
}

.dock-line-inv::before,
.dock-line-inv::after {
    background: rgba(255, 255, 255, 0.12);
}

.dock-line-inv .dock-line-center {
    background: var(--sienna-lt);
}

/* ============================================================
   LAYOUT
============================================================ */
.wrap {
    width: 100%;
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 96px 0;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    padding: 14px 28px;
    border-radius: var(--r-pill);
    border: none;
    cursor: pointer;
    transition: var(--ease);
    white-space: nowrap;
    text-decoration: none;
}

.btn-river {
    background: var(--river);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(27, 61, 92, 0.28);
}

.btn-river:hover {
    background: var(--river-mid);
    box-shadow: 0 8px 28px rgba(27, 61, 92, 0.36);
    transform: translateY(-2px);
}

.btn-sienna {
    background: var(--sienna);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(196, 98, 45, 0.28);
}

.btn-sienna:hover {
    background: var(--sienna-lt);
    box-shadow: 0 8px 28px rgba(196, 98, 45, 0.36);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--river);
    border: 1.5px solid var(--adobe-deep);
}

.btn-ghost:hover {
    border-color: var(--river);
    background: var(--river-pale);
}

.btn-ghost-inv {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-inv:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

/* Phone pill */
.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: var(--white);
    border: 1.5px solid var(--adobe-deep);
    border-radius: var(--r-pill);
    padding: 13px 28px;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--river);
    box-shadow: var(--sh-sm);
    transition: var(--ease);
    cursor: pointer;
}

.phone-pill:hover {
    border-color: var(--river);
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
}

.phone-pill svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--sienna);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.phone-pill-inv {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--r-pill);
    padding: 13px 28px;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--ease);
    cursor: pointer;
}

.phone-pill-inv:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.phone-pill-inv svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.disc {
    font-size: 0.77rem;
    color: var(--stone-lt);
    margin-top: 12px;
}

.disc-inv {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 12px;
}

/* ============================================================
   NAVBAR
============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(242, 237, 229, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--adobe-mid);
}

.nav-inner {
    max-width: var(--mw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 32px;
}

.brand {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--river);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-a {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--stone);
    transition: color var(--ease);
}

.nav-a:hover {
    color: var(--river);
}

/* ============================================================
   HERO
============================================================ */
.hero {
    padding: 130px 0 88px;
    background: var(--adobe);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--adobe-mid);
    border-radius: var(--r-pill);
    padding: 5px 14px 5px 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--stone);
    margin-bottom: 22px;
    box-shadow: var(--sh-xs);
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .35
    }
}

.hero-h1 {
    margin-bottom: 18px;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--stone);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.78;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

/* Harbor water ripple - signature visual element */
.ripple-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
}

.ripple-wrap img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.ripple-svg {
    width: 100%;
    height: 100%;
}

/* Center phone icon */
.ripple-center {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--river);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ripple-center svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Pulse animation on outermost ripples */
@keyframes ripple-out {
    0% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.05;
    }

    100% {
        opacity: 0.15;
    }
}

/* ============================================================
   STAT ROW
============================================================ */
.stat-row {
    background: var(--river);
    padding: 0;
}

.sr-inner {
    max-width: var(--mw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sr-cell {
    padding: 1.5rem;
    text-align: left;
    background: var(--river);
    color: var(--white);
    border-radius: 1rem;
    box-shadow: var(--sh-xs);
}

.sr-fig {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.sr-label {
    line-height: 1.4;
}

/* ============================================================
   ABOUT
============================================================ */
.about-sec {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 18px;
}

.about-text p {
    font-size: 1.02rem;
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* SA neighborhood tags visual */
.hood-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.hood-tag {
    background: var(--river-pale);
    border: 1px solid var(--river-tint);
    border-radius: var(--r-pill);
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--river);
    transition: var(--ease);
}

.hood-tag:hover {
    background: var(--river);
    color: var(--white);
    border-color: var(--river);
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.hiw-sec {
    background: var(--river-pale);
}

.hiw-head {
    max-width: 560px;
    margin: 0 auto 60px;
    text-align: center;
}

.hiw-head h2 {
    margin-bottom: 12px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
}

.step-c {
    background: var(--white);
    border: 1.5px solid var(--adobe-deep);
    border-radius: var(--r);
    padding: 32px 20px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--sh-xs);
    transition: var(--ease);
}

.step-c:hover {
    border-color: rgba(27, 61, 92, 0.3);
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
}

.step-bubble {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--adobe);
    border: 2px solid var(--adobe-deep);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--river);
    position: relative;
    z-index: 2;
    transition: var(--ease);
}

.step-c:hover .step-bubble {
    background: var(--river);
    color: var(--white);
    border-color: var(--river);
}

.step-c h3 {
    font-size: 0.96rem;
    margin-bottom: 8px;
}

.step-c p {
    font-size: 0.86rem;
}

.hiw-ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 48px;
}

/* ============================================================
   CALLER PROFILES - staggered layout
============================================================ */
.profiles-sec {
    background: var(--river);
    padding: 96px 0;
}

.profiles-intro {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 52px;
}

.profiles-intro .kicker {
    color: rgba(255, 255, 255, 0.35);
    justify-content: center;
}

.profiles-intro .kicker::before {
    background: rgba(255, 255, 255, 0.25);
}

.profiles-intro h2 {
    color: var(--white);
}

.profiles-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 780px;
    margin: 0 auto;
}

.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-lg);
    padding: 36px 38px;
    transition: var(--ease);
}

.profile-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(196, 98, 45, 0.4);
    transform: translateX(4px);
}

.profile-card-img{
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-lg);
    transition: var(--ease);
    overflow: hidden;
}
.profile-card-img img{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 5/2;
    object-fit: cover;
}

.profile-hood {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sienna-lt);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.35;
}

.profile-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-sec {
    background: var(--adobe);
    padding: 96px 0;
}

.testi-intro {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 48px;
}

.testi-intro h2 {
    margin-bottom: 8px;
}

.testi-stack {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.testi-item {
    padding: 40px 0;
}

.testi-item:first-child {
    padding-top: 0;
}

.testi-item:last-child {
    padding-bottom: 0;
}

.testi-quote {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 1.12rem;
    color: var(--river);
    margin-bottom: 14px;
    line-height: 1.5;
}

.testi-body {
    font-size: 0.92rem;
    color: var(--stone);
    line-height: 1.78;
    margin-bottom: 18px;
}

.testi-foot {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--sienna-pale);
    flex-shrink: 0;
    border: 2px solid var(--adobe-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: var(--sienna);
}

.testi-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--river);
    display: block;
}

.testi-loc {
    font-size: 0.78rem;
    display: block;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.star {
    width: 13px;
    height: 13px;
    fill: #F59E0B;
}

/* ============================================================
   WHY DIALHARBOR
============================================================ */
.why-sec {
    background: var(--white);
}

.why-intro {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 52px;
}

.why-intro h2 {
    margin-bottom: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-card {
    background: var(--adobe);
    border: 1.5px solid var(--adobe-mid);
    border-radius: var(--r);
    padding: 36px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--ease);
}

.why-card:hover {
    background: var(--white);
    border-color: var(--river-tint);
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.why-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--river-pale);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: var(--river);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-body h3 {
    color: var(--river);
    margin-bottom: 8px;
}

.why-body p {
    margin: 0;
}

/* ============================================================
   SAFETY - harbor metaphor
============================================================ */
.safety-sec {
    background: var(--river-pale);
}

.safety-intro {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 48px;
}

.safety-intro h2 {
    margin-bottom: 10px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sfc {
    background: var(--white);
    border: 1.5px solid var(--river-tint);
    border-radius: var(--r);
    padding: 36px 28px;
    box-shadow: var(--sh-xs);
    transition: var(--ease);
}

.sfc:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: var(--river-mid);
}

.sfc-anchor {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 0.88rem;
    color: var(--sienna);
    margin-bottom: 14px;
    display: block;
}

.sfc h3 {
    color: var(--river);
    margin-bottom: 10px;
}

.sfc p {
    margin: 0;
}

/* ============================================================
   FAQ
============================================================ */
.faq-sec {
    background: var(--white);
}

.faq-intro {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 44px;
}

.faq-intro h2 {
    margin-bottom: 10px;
}

.faq-wrap {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fi {
    background: var(--adobe);
    border: 1.5px solid var(--adobe-mid);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color var(--ease);
}

.fi.open {
    border-color: var(--river);
    background: var(--white);
}

.fq {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--river);
    transition: color var(--ease);
}

.fq:hover {
    color: var(--sienna);
}

.fi-tog {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--white);
    border: 1.5px solid var(--adobe-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--river);
    line-height: 1;
    transition: transform var(--ease), background var(--ease), color var(--ease);
}

.fi.open .fi-tog {
    transform: rotate(45deg);
    background: var(--sienna);
    color: var(--white);
    border-color: var(--sienna);
}

.fa {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    transition: max-height 0.36s ease, padding 0.24s;
}

.fi.open .fa {
    max-height: 200px;
    padding: 0 26px 20px;
}

.fa p {
    font-size: 0.92rem;
}

/* ============================================================
   FINAL CTA
============================================================ */
.cta-sec {
    background: var(--sienna);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-inner .kicker {
    color: rgba(255, 255, 255, 0.8);
    justify-content: center;
}

.cta-inner .kicker::before {
    background: rgba(255, 255, 255, 0.35);
}

.cta-inner h2 {
    color: var(--white);
    margin-bottom: 14px;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.75);
    max-width: 720px;
    margin: 0 auto 16px;
    line-height: 1.78;
}

.cta-acts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    background: var(--river);
    padding: 28px 32px;
}

.foot-in {
    max-width: var(--mw);
    margin: 0 auto;
}


.foot-copy {
    font-size: 0.975rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.65;
    text-align: center;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.52s ease, transform 0.52s ease;
}

.rv.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width:960px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .ripple-wrap {
        max-width: 280px;
        margin: 0 auto
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr
    }

    .steps-grid::before {
        display: none
    }

    .profile-card:nth-child(2) {
        margin-left: 0
    }

    .testi-stack {
        max-width: 100%
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .safety-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto
    }

    .sr-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .sr-cell:nth-child(2) {
        border-right: none
    }

    .sr-cell:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.08)
    }
}

@media(max-width:600px) {
    .wrap {
        padding: 0 20px
    }

    .nav-links .nav-a {
        display: none
    }

    .hero {
        padding: 100px 0 64px
    }

    section {
        padding: 72px 0 !important
    }

    .steps-grid {
        grid-template-columns: 1fr
    }

    .foot-in {
        flex-direction: column;
        align-items: flex-start
    }

    .foot-copy {
        text-align: left
    }
}

@media(prefers-reduced-motion:reduce) {
    .rv {
        opacity: 1;
        transform: none;
        transition: none
    }

    *,
    .live-dot {
        animation: none !important;
        transition: none !important
    }
}