/* ============================================
   RETENTION BESTIES — Stylesheet
   ============================================ */

:root {
    --orange: #EB5E28;
    --orange-dark: #c44915;
    --blue: #9AC4F8;
    --aqua: #99EDCC;
    --berry: #9A275A;
    --blush: #FFACE4;
    --ink: #111111;
    --white: #FFFFFF;
    --gray-100: #F7F7F5;
    --gray-200: #E8E8E4;
    --gray-400: #8A8A85;
    --gray-600: #4A4A47;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(17, 17, 17, 0.06);
    --shadow-md: 0 10px 30px rgba(17, 17, 17, 0.08);
    --shadow-lg: 0 20px 60px rgba(17, 17, 17, 0.18);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);

    /* Theme tokens (overridden in [data-theme="dark"]) */
    --bg: #FFFFFF;
    --bg-elev: #FFFFFF;
    --bg-mint: #99EDCC;
    --bg-subtle: #F7F7F5;
    --fg: #111111;
    --fg-muted: #4A4A47;
    --border: #E8E8E4;
    --input-bg: #FFFFFF;

    color-scheme: light;
}

[data-theme="dark"] {
    --bg: #0F0F0F;
    --bg-elev: #1C1C1C;
    --bg-mint: #1E3A2D;
    --bg-subtle: #181818;
    --fg: #F5F5F5;
    --fg-muted: #B8B8B4;
    --border: #2A2A2A;
    --input-bg: #181818;

    color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Inter', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: var(--fg);
    background: var(--bg);
    overflow-x: hidden;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.section-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}
.section-title--light { color: var(--white); }

.kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
    padding: 0.4rem 0.85rem;
    border: 1.5px solid var(--orange);
    border-radius: var(--radius-pill);
}
.kicker--dark { color: var(--fg); border-color: var(--fg); }
.kicker--light { color: var(--aqua); border-color: var(--aqua); }

.eyebrow {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--orange);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hl {
    color: var(--orange);
    position: relative;
    white-space: nowrap;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-md);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
    line-height: 1;
    text-align: center;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn--primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 0 0 var(--orange-dark);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 0 var(--orange-dark), 0 10px 24px rgba(235, 94, 40, 0.35);
}
.btn--primary:active { transform: translateY(2px); box-shadow: 0 2px 0 0 var(--orange-dark); }

.btn--large {
    font-size: 1.05rem;
    padding: 1.1rem 2rem;
    border-radius: var(--radius-md);
}

.btn--full { width: 100%; padding: 1.15rem 1.5rem; font-size: 1rem; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
    padding: 1rem 0;
}

.nav--scrolled {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 0.6rem 0;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav__logo-text {
    font-weight: 900;
    font-size: 0.85rem;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--orange);
    display: block;
}

.nav__links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav__links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s var(--ease);
    position: relative;
}
.nav__links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: var(--orange);
    transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--orange); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 0.65rem 1.2rem; font-size: 0.9rem; box-shadow: 0 3px 0 0 var(--orange-dark); }

.theme-toggle {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: transparent;
    cursor: pointer;
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
    flex-shrink: 0;
}
.theme-toggle:hover {
    color: var(--orange);
    border-color: var(--orange);
}
.theme-toggle svg { width: 18px; height: 18px; display: block; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.theme-toggle--mobile {
    align-self: flex-start;
    margin-top: 0.5rem;
    border-color: rgba(255, 255, 255, 0.25);
}

.theme-toggle--footer {
    width: 34px;
    height: 34px;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}
.theme-toggle--footer svg { width: 16px; height: 16px; }
.theme-toggle--footer:hover { color: var(--orange); border-color: var(--orange); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 24px 2rem;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nav__mobile a {
    color: var(--white);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 0;
}
.nav__mobile.is-open { display: flex; }

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero__title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .hero__title { font-size: 4.5rem; }
}
@media (min-width: 1024px) {
    .hero__title { font-size: 6rem; }
}

.hero__sub {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin: 0 auto 2.25rem;
    line-height: 1.5;
}

.hero__note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
    animation: hero-scroll-bounce 1.5s ease-in-out infinite;
    z-index: 1;
}
.hero__scroll svg { display: block; }
.hero__scroll:hover { color: var(--orange); opacity: 1; }
.hero__scroll:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
    border-radius: 4px;
}
@keyframes hero-scroll-bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50%     { transform: translate(-50%, -6px); }
}
@media (prefers-reduced-motion: reduce) {
    .hero__scroll {
        animation: none;
        transform: translateX(-50%);
    }
}

/* ============================================
   EXPERIENCE / LOGO STRIP
   (lives below Contact, white background, full-color logos)
   ============================================ */

.experience {
    background: #FFFFFF;
    padding: 4.5rem 0 5rem;
    border-top: 1px solid var(--gray-200);
}
.experience__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.experience__label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gray-600);
    text-align: center;
}
.experience__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}
.experience__track img {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    transition: transform 0.3s var(--ease);
}
.experience__track img:hover {
    transform: scale(1.05);
}

/* ============================================
   PROBLEM
   ============================================ */

.problem {
    background: var(--bg);
    padding: 6rem 0;
    color: var(--fg);
    position: relative;
}

.problem__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}
.problem__left { position: sticky; top: 100px; }

.problem__punch {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--fg);
}

.problem__list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; counter-reset: none; padding: 0; }
.problem__list li {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
    position: relative;
    align-items: flex-start;
}
.problem__list li:hover {
    background: var(--bg-elev);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.problem__list p { font-size: 1.1rem; line-height: 1.55; }
.problem__list strong { color: var(--berry); font-weight: 800; }

.problem__num {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 0.9;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

/* ============================================
   WHO
   ============================================ */

.who {
    background: var(--bg-mint);
    padding: 7rem 0;
}

.who__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.who__body {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--fg-muted);
    margin-bottom: 1rem;
}
.who__body--strong {
    font-size: 1.4rem;
    color: var(--fg);
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-left: 1.25rem;
    border-left: 4px solid var(--orange);
    margin-top: 1.5rem;
}

.who__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1.5px solid var(--border);
}
.who__stats div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.who__stats strong {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: -0.03em;
    line-height: 1;
}
.who__stats span {
    font-size: 0.82rem;
    color: var(--fg-muted);
    line-height: 1.3;
}

.who__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: start;
}

.who__person {
    display: flex;
    flex-direction: column;
}
.who__person--2 {
    margin-top: 3rem;
}

.who__photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease);
}
.who__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.founder-name {
    display: block;
    margin: 1.25rem 0 0.4rem;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--fg);
}

.who__photo--1 {
    width: 100%;
    aspect-ratio: 3 / 4;
    box-shadow: 14px 14px 0 var(--berry);
}
.who__photo--2 {
    width: 100%;
    aspect-ratio: 3 / 4;
    box-shadow: -14px 14px 0 var(--blush);
}
.who__photo:hover { transform: translateY(-6px) scale(1.02); z-index: 3; }

.who__bio {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--fg);
    font-size: 0.95rem;
    line-height: 1.55;
}
.who__bio p { margin: 0; }
.who__linkedin {
    display: inline-flex;
    align-items: center;
    color: var(--fg);
    width: -moz-fit-content;
    width: fit-content;
    transition: color 0.2s var(--ease);
}
.who__linkedin:hover { color: var(--orange); }

/* ============================================
   SOLUTION
   ============================================ */

.solution {
    background: #0F0F0F;
    color: var(--white);
    padding: 7rem 0;
    position: relative;
}

.solution__head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.sprint { color: var(--berry); font-weight: 700; }

.solution__body {
    font-size: 1.15rem;
    color: #D4D4D4;
    line-height: 1.6;
    margin-top: 1rem;
}
.solution__body strong { color: var(--white); font-weight: 700; }

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

.card {
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--aqua), var(--orange));
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease);
}
.card:hover {
    transform: translateY(-8px);
    border-color: var(--aqua);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.card:hover::before { transform: translateX(0); }

.card__icon {
    width: 52px;
    height: 52px;
    background: rgba(153, 237, 204, 0.12);
    color: var(--aqua);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    margin-bottom: 0.5rem;
}

.card__num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--aqua);
    text-transform: uppercase;
}
.card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* ============================================
   ICP
   ============================================ */

.icp {
    background: var(--bg-mint);
    color: var(--fg);
    padding: 7rem 0;
}

.icp__head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}
.icp__sub {
    font-size: 1.1rem;
    color: var(--fg-muted);
    margin-top: 0.5rem;
}

.checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}
.checklist li {
    display: flex;
    gap: 1.25rem;
    background: var(--bg-elev);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.checklist li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: grid;
    place-items: center;
}

.checklist h3 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
}
.checklist p {
    font-size: 0.95rem;
    color: var(--fg-muted);
    line-height: 1.5;
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
    background: var(--bg);
    padding: 7rem 0;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__body {
    font-size: 1.1rem;
    color: var(--fg-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.expect {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.expect li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.45;
}
.dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    margin-top: 0.55rem;
    box-shadow: 0 0 0 4px rgba(235, 94, 40, 0.18);
}

.contact__email {
    font-size: 0.95rem;
    color: var(--fg-muted);
    padding: 1rem 1.25rem;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border);
}
.contact__email a {
    color: var(--orange);
    font-weight: 700;
    border-bottom: 1.5px solid var(--orange);
}

.contact__form {
    background: var(--bg-elev);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__form-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fg);
    letter-spacing: -0.01em;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.98rem;
    color: var(--fg);
    background: var(--input-bg);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(235, 94, 40, 0.15);
}
.field textarea { resize: vertical; min-height: 100px; }

.consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0.25rem 0;
}
.consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin: 0;
    margin-top: 1px;
    border: 1.5px solid #9CA3AF;
    border-radius: 3px;
    background: #FFFFFF;
    cursor: pointer;
    position: relative;
    transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
}
.consent input[type="checkbox"]:hover { border-color: #6B7280; }
.consent input[type="checkbox"]:checked {
    background: var(--orange);
    border-color: var(--orange);
}
.consent input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(45deg);
}
.consent input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}
.consent label {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--fg);
    cursor: pointer;
}
.consent a {
    color: var(--fg);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.15s var(--ease);
}
.consent a:hover { color: var(--orange); }

.field__error {
    color: #DC2626;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}
.field__optional {
    color: var(--fg-muted);
    font-weight: 400;
    font-size: 0.85em;
}
.field--error input,
.field--error textarea,
.field--error select {
    border-color: #DC2626;
}
.field--error input:focus,
.field--error textarea:focus,
.field--error select:focus {
    border-color: #DC2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}
.field--error .consent input[type="checkbox"]:not(:checked) {
    border-color: #DC2626;
}

.form__error {
    background: rgba(192, 57, 43, 0.08);
    color: #c0392b;
    border: 1.5px solid rgba(192, 57, 43, 0.3);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    line-height: 1.45;
    margin: 0;
}
.form__error a {
    color: var(--orange);
    text-decoration: underline;
    font-weight: 600;
}

.contact__form-success-text {
    color: var(--fg-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}
.contact__form-success-link {
    color: var(--orange);
    font-weight: 700;
    text-decoration: underline;
    align-self: flex-start;
    font-size: 1.02rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--ink);
    color: var(--white);
    padding: 4rem 0 2rem;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}
.footer__logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--orange);
    display: block;
    margin-bottom: 0.75rem;
}
.footer__brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    max-width: 360px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}
.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.2s var(--ease);
}
.footer__links a:hover { color: var(--orange); }

.footer__copy {
    grid-column: 1 / -1;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer__copy p { text-align: center; }

/* ============================================
   ANIMATIONS (scroll reveal)
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .nav__links { display: none; }
    .nav__cta { display: none; }
    .nav__toggle { display: flex; }

    .problem__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact__inner { grid-template-columns: 1fr; gap: 3rem; }

    .problem__left { position: static; }

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

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

    .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .who { padding: 4rem 0; }
    .who .section-title { font-size: 3rem; }
    .who__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .who__images {
        position: relative;
        height: auto;
        max-width: 440px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding: 0;
    }
    .who__person--2 { margin-top: 0; }
    .who__photo--1,
    .who__photo--2 {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 4;
    }
    .who__photo--1 { box-shadow: 10px 10px 0 var(--berry); margin-top: 0; }
    .who__photo--2 { box-shadow: -10px 10px 0 var(--blush); margin-top: 0; }
    .who__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .who__photo--1,
    .who__photo--2 { aspect-ratio: 1 / 1; }
    .who__photo--1 img,
    .who__photo--2 img { object-position: center top; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }

    .hero { padding: 7rem 0 3rem; }
    .experience { padding: 3rem 0 3.5rem; }
    .experience__track { flex-wrap: wrap; justify-content: center; gap: 1.5rem 1.75rem; }
    .experience__track img { height: 28px; max-width: 110px; }

    .problem,
    .who,
    .solution,
    .icp,
    .contact { padding: 4.5rem 0; }

    .who .section-title { font-size: 2.25rem; }
    .who__stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .who__stats strong { font-size: 2.25rem; }

    .problem__list { gap: 1rem; }
    .problem__list li { padding: 1.5rem; gap: 1rem; }
    .problem__num { font-size: 2rem; }

    .contact__form { padding: 1.75rem; }

    .who__images { gap: 3rem; padding: 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
