/* ============================================================
   TOKENS
============================================================ */
:root {
    --mango: #FFF0D6;
    --mango-mid: #FFE4B5;
    --mango-deep: #F5D08A;
    --rasp: #8B1A3A;
    --rasp-mid: #A02348;
    --rasp-light: #C4365C;
    --rasp-pale: #FDF0F3;
    --rasp-tint: #F7D6DE;
    --lime: #4A7C59;
    --lime-mid: #5A9469;
    --lime-pale: #EEF5F0;
    --lime-tint: #D4E8DA;
    --white: #FFFFFF;
    --ink: #1A0A10;
    --stone: #6B4F56;
    --stone-lt: #A88A92;

    --sh-xs: 0 1px 5px rgba(26, 10, 16, 0.05);
    --sh-sm: 0 3px 14px rgba(26, 10, 16, 0.08);
    --sh-md: 0 8px 32px rgba(26, 10, 16, 0.10);
    --sh-lg: 0 18px 56px rgba(26, 10, 16, 0.13);

    --r: 14px;
    --r-lg: 24px;
    --r-pill: 100px;
    --mw: 1080px;
    --ease: 0.22s cubic-bezier(.4, 0, .2, 1);
}

/* ============================================================
   RESET
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--mango);
    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: 'Gloock', serif;
    line-height: 1.15;
    color: var(--rasp);
}

h1 {
    font-size: clamp(2rem, 4.6vw, 3.5rem);
}

h2 {
    font-size: clamp(1.7rem, 3.3vw, 2.5rem);
}

h3 {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
}

p {
    color: var(--stone);
    line-height: 1.78;
}

/* Pill eyebrow - signature element */
.pill-label {
    display: inline-flex;
    align-items: center;
    font-family: 'Nunito', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 16px;
    width: fit-content;
}

.pill-rasp {
    background: var(--rasp-tint);
    color: var(--rasp);
}

.pill-lime {
    background: var(--lime-tint);
    color: var(--lime);
}

.pill-mango {
    background: var(--mango-deep);
    color: var(--rasp);
}

.pill-white {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.pill-center {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   LAYOUT
============================================================ */
.wrap {
    width: 100%;
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 96px 0;
}

.tc {
    text-align: center;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    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-rasp {
    background: var(--rasp);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(139, 26, 58, 0.30);
}

.btn-rasp:hover {
    background: var(--rasp-mid);
    box-shadow: 0 8px 28px rgba(139, 26, 58, 0.40);
    transform: translateY(-2px);
}

.btn-lime {
    background: var(--lime);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(74, 124, 89, 0.28);
}

.btn-lime:hover {
    background: var(--lime-mid);
    box-shadow: 0 8px 28px rgba(74, 124, 89, 0.36);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--rasp);
    border: 2px solid var(--mango-deep);
}

.btn-ghost:hover {
    border-color: var(--rasp);
    background: var(--rasp-pale);
}

.btn-ghost-inv {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost-inv:hover {
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.1);
}

/* Phone pill */
.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: var(--white);
    border: 2px solid var(--mango-deep);
    border-radius: var(--r-pill);
    padding: 13px 28px;
    font-family: 'Gloock', serif;
    font-size: 1.4rem;
    color: var(--rasp);
    box-shadow: var(--sh-sm);
    transition: var(--ease);
    cursor: pointer;
}

.phone-pill:hover {
    border-color: var(--rasp);
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
}

.phone-pill svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--rasp);
    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.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--r-pill);
    padding: 13px 28px;
    font-family: 'Gloock', serif;
    font-size: 1.4rem;
    color: var(--white);
    transition: var(--ease);
    cursor: pointer;
}

.phone-pill-inv:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.phone-pill-inv svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.7);
    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.4);
    margin-top: 12px;
}

/* ============================================================
   NAVBAR
============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 240, 214, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--mango-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: 'Gloock', serif;
    font-size: 1.3rem;
    color: var(--rasp);
    display: flex;
    align-items: center;
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-a {
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--stone);
    transition: color var(--ease);
}

.nav-a:hover {
    color: var(--rasp);
}

/* ============================================================
   HERO
============================================================ */
.hero {
    padding: 130px 0 88px;
    background: var(--mango);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--mango-mid);
    border-radius: var(--r-pill);
    padding: 5px 14px 5px 8px;
    font-size: 0.78rem;
    font-weight: 700;
    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;
}

/* Flavor burst - overlapping soft circles */
.burst-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 360px;
    margin: 0 auto;
}

.burst-circle {
    position: absolute;
    border-radius: 50%;
}

.bc-1 {
    width: 68%;
    height: 68%;
    top: 0;
    left: 0;
    background: var(--rasp-tint);
    opacity: 0.8;
}

.bc-2 {
    width: 62%;
    height: 62%;
    bottom: 0;
    right: 0;
    background: var(--lime-tint);
    opacity: 0.8;
}

.bc-3 {
    width: 56%;
    height: 56%;
    bottom: 0;
    left: 10%;
    background: var(--mango-deep);
    opacity: 0.65;
}

.bc-4 {
    width: 38%;
    height: 38%;
    top: 20%;
    right: 10%;
    background: var(--rasp-pale);
    opacity: 0.9;
    border: 2px solid var(--rasp-tint);
}

/* Center label */
.burst-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.burst-label .num {
    font-family: 'Gloock', serif;
    font-size: 2.6rem;
    color: var(--rasp);
    line-height: 1;
    display: block;
}

.burst-label .sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--stone);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

/* ============================================================
   STAT BAR
============================================================ */
.stat-bar {
    background: var(--rasp);
}

.sb-inner {
    max-width: var(--mw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.sb-cell {
    padding: 30px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sb-cell:last-child {
    border-right: none;
}

.sb-fig {
    font-family: 'Gloock', serif;
    font-size: 2rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.sb-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* ============================================================
   INTRO / ABOUT
============================================================ */
.intro-sec {
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.intro-grid h2 {
    margin-bottom: 16px;
}
.intro-grid p{
    margin-bottom: 16px;
}

.intro-grid img{
    display: block;
    width: 100%;
    aspect-ratio: 5/2;
    object-fit: cover;
    border-radius: 1.5rem;
    margin-bottom: 1.25rem;
}

.intro-subtitle {
    font-family: 'Gloock', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--stone);
    margin-bottom: 22px;
}

.intro-text p {
    font-size: 1.02rem;
    margin-bottom: 14px;
}

.intro-text p:last-of-type {
    margin-bottom: 0;
}

/* Feature pills right column */
.feature-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.fp-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--mango);
    border: 1.5px solid var(--mango-mid);
    border-radius: var(--r);
    padding: 1rem;
    transition: var(--ease);
}

.fp-item:hover {
    background: var(--white);
    border-color: var(--rasp-tint);
    box-shadow: var(--sh-md);
    transform: translateX(4px);
}

.fp-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fp-icon-rasp {
    background: var(--rasp-tint);
}

.fp-icon-rasp svg {
    stroke: var(--rasp);
}

.fp-icon-lime {
    background: var(--lime-tint);
}

.fp-icon-lime svg {
    stroke: var(--lime);
}

.fp-text strong {
    font-weight: 800;
    font-size: 0.92rem;
    color: var(--rasp);
    display: block;
    margin-bottom: 2px;
}

.fp-text span {
    font-size: 0.83rem;
    color: var(--stone);
}

/* ============================================================
   WHY VOICE
============================================================ */
.voice-sec {
    background: var(--rasp);
    padding: 96px 0;
}

.voice-text .pill-label {
    margin-bottom: 14px;
}

.voice-text h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.voice-text p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.voice-text p:last-child {
    margin-bottom: 0;
}

.spark-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 1.5rem 0;
}

.spark-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    padding: 16px 20px;
    transition: var(--ease);
}

.spark-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
}

.spark-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mango-deep);
    flex-shrink: 0;
}

.spark-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.hiw-sec {
    background: var(--mango);
}

.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: 2px solid var(--mango-mid);
    border-radius: var(--r-lg);
    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: var(--rasp-tint);
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
}

.step-bubble {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--rasp-pale);
    border: 2px solid var(--rasp-tint);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gloock', serif;
    font-size: 1.1rem;
    color: var(--rasp);
    position: relative;
    z-index: 2;
    transition: var(--ease);
}

.step-c:hover .step-bubble {
    background: var(--rasp);
    color: var(--white);
    border-color: var(--rasp);
}

.step-c h3 {
    margin-bottom: 8px;
    color: var(--rasp);
}

.step-c p {
    font-size: 0.86rem;
}

.hiw-ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 48px;
}

/* ============================================================
   CALLER PROFILES - horizontal colored cards
============================================================ */
.profiles-sec {
    background: var(--white);
}

.profiles-intro {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 48px;
}

.profiles-intro h2 {
    margin-bottom: 8px;
}

.profiles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.profile-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: var(--ease);
}

.profile-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.profile-color {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 20px;
    text-align: center;
}

.pc-rasp {
    background: var(--rasp-tint);
}

.pc-lime {
    background: var(--lime-tint);
}

.pc-mango {
    background: var(--mango);
    border-right: 2px solid var(--mango-mid);
}

.profile-hood {
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pc-rasp .profile-hood {
    color: var(--rasp);
}

.pc-lime .profile-hood {
    color: var(--lime);
}

.pc-mango .profile-hood {
    color: var(--rasp);
}

.profile-initial {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gloock', serif;
    font-size: 1.4rem;
}

.pc-rasp .profile-initial {
    background: var(--rasp);
    color: var(--white);
}

.pc-lime .profile-initial {
    background: var(--lime);
    color: var(--white);
}

.pc-mango .profile-initial {
    background: var(--rasp);
    color: var(--white);
}

.profile-body {
    background: var(--white);
    padding: 32px 34px;
}

.profile-body h3 {
    color: var(--rasp);
    margin-bottom: 10px;
    line-height: 1.3;
}

.profile-body p {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.75;
}

/* ============================================================
   GENDER SECTION
============================================================ */
.gender-sec {
    background: var(--mango);
}

.gender-intro {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 44px;
}

.gender-intro h2 {
    margin-bottom: 10px;
}

.gender-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gc {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 48px 40px;
    border: 2px solid var(--mango-mid);
    transition: var(--ease);
}

.gc:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: transparent;
}

.gc-women:hover {
    border-color: var(--rasp-tint);
}

.gc-men:hover {
    border-color: var(--lime-tint);
}

.gc h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.gc-women h3 {
    color: var(--rasp);
}

.gc-men h3 {
    color: var(--lime);
}

.gc-tagline {
    font-size: 0.9rem;
    color: var(--stone);
    margin-bottom: 24px;
    line-height: 1.65;
}

.gc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.gc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--stone);
}

.gc-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gc-women .gc-check {
    background: var(--rasp-tint);
}

.gc-men .gc-check {
    background: var(--lime-tint);
}

/* ============================================================
   WHY YUMMYDIAL
============================================================ */
.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(--mango);
    border: 2px solid var(--mango-mid);
    border-radius: var(--r-lg);
    padding: 36px 30px;
    transition: var(--ease);
}

.why-card:hover {
    background: var(--white);
    border-color: var(--rasp-tint);
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.why-num {
    font-family: 'Gloock', serif;
    font-size: 2.6rem;
    color: var(--mango-deep);
    line-height: 1;
    margin-bottom: 12px;
}

.why-card h3 {
    color: var(--rasp);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.88rem;
}

/* ============================================================
   SAFETY
============================================================ */
.safety-sec {
    background: var(--rasp-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: 2px solid var(--rasp-tint);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    box-shadow: var(--sh-xs);
    transition: var(--ease);
}

.sfc:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
    border-color: var(--rasp-light);
}

.sfc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--rasp-tint);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sfc-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--rasp);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sfc h3 {
    color: var(--rasp);
    margin-bottom: 8px;
    font-size: 1rem;
}

.sfc p {
    font-size: 0.88rem;
}

/* ============================================================
   FIRST CALL IDEAS
============================================================ */
.ideas-sec {
    background: var(--mango);
}

.ideas-intro {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 44px;
}

.ideas-intro h2 {
    margin-bottom: 10px;
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 860px;
    margin: 0 auto 24px;
}

.idea-card {
    background: var(--white);
    border: 2px solid var(--mango-mid);
    border-radius: var(--r-lg);
    padding: 24px 22px;
    text-align: center;
    transition: var(--ease);
}

.idea-card:hover {
    border-color: var(--rasp-tint);
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.idea-q {
    font-family: 'Gloock', serif;
    font-style: italic;
    font-size: 0.98rem;
    color: var(--rasp);
    line-height: 1.45;
}

.idea-last {
    grid-column: span 3;
    max-width: 340px;
    margin: 0 auto;
}

.ideas-note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--stone-lt);
    font-style: italic;
}

/* ============================================================
   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(--mango);
    border: 2px solid var(--mango-mid);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color var(--ease);
}

.fi.open {
    border-color: var(--rasp-tint);
    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: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--rasp);
    transition: color var(--ease);
}

.fq:hover {
    color: var(--rasp-mid);
}

.fi-tog {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--white);
    border: 2px solid var(--mango-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--rasp);
    line-height: 1;
    transition: transform var(--ease), background var(--ease), color var(--ease);
}

.fi.open .fi-tog {
    transform: rotate(45deg);
    background: var(--rasp);
    color: var(--white);
    border-color: var(--rasp);
}

.fa {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    transition: max-height 0.36s ease, padding 0.24s;
}

.fi.open .fa {
    max-height: 220px;
    padding: 0 26px 20px;
}

.fa p {
    font-size: 0.92rem;
}

/* ============================================================
   FINAL CTA
============================================================ */
.cta-sec {
    background: var(--rasp);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.cta-sec::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    color: var(--white);
    margin-bottom: 14px;
}

.cta-sub {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin: 0 auto 36px;
    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(--ink);
    padding: 28px 32px;
}

.foot-in {
    max-width: var(--mw);
    margin: 0 auto;
}

.foot-brand {
    font-family: 'Gloock', serif;
    font-size: 1.15rem;
    color: var(--white);
}

.foot-brand .sweet {
    color: var(--mango-deep);
}

.foot-copy {
    font-size: 0.77rem;
    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
    }

    .burst-wrap {
        margin: 0 auto
    }

    .intro-grid {
        grid-template-columns: 1fr
    }

    .spark-list{
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr
    }

    .steps-grid::before {
        display: none
    }

    .profile-card {
        grid-template-columns: 1fr
    }

    .profile-color {
        padding: 24px;
        flex-direction: row;
        gap: 14px
    }

    .gender-grid {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .safety-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto
    }

    .ideas-grid {
        grid-template-columns: 1fr 1fr
    }

    .idea-last {
        grid-column: span 2
    }

    .sb-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .sb-cell:nth-child(2) {
        border-right: none
    }

    .sb-cell:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.1)
    }
}

@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
    }

    .ideas-grid {
        grid-template-columns: 1fr
    }

    .idea-last {
        grid-column: span 1
    }

    .spark-list{
        grid-template-columns: repeat(1, 1fr);
    }

    .gc {
        padding: 36px 28px
    }

    .foot-in {
        flex-direction: column;
        align-items: flex-start
    }

    .foot-copy {
        text-align: left
    }
    .feature-pills{
        grid-template-columns: 1fr;
    }
    .nav-inner{
        padding: 0 20px;
    }
}

@media(prefers-reduced-motion:reduce) {
    .rv {
        opacity: 1;
        transform: none;
        transition: none
    }

    *,
    .live-dot {
        animation: none !important;
        transition: none !important
    }
}