:root {
    --ink: #0D0F14;
    --ink-soft: #181B23;
    --ink-mid: #22263A;
    --steel: #2E3450;
    --amber: #F59E0B;
    --amber-lt: #FCD34D;
    --amber-dk: #D97706;
    --glow: rgba(245, 158, 11, 0.18);
    --glow-sm: rgba(245, 158, 11, 0.08);
    --white: #FFFFFF;
    --offwhite: #F4F5F8;
    --muted: #9BA3B8;
    --rose: #F472B6;
    --rose-bg: rgba(244, 114, 182, 0.08);
    --blue-m: #60A5FA;
    --blue-bg: rgba(96, 165, 250, 0.08);
    --radius: 14px;
    --radius-lg: 24px;
    --transition: 0.25s 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', sans-serif;
    background: var(--ink);
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
    font-family: 'Sora', sans-serif;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 96px 0;
}

.section-light {
    background: var(--offwhite);
    color: var(--ink);
}

.section-light h2,
.section-light h3 {
    color: var(--ink);
}

.section-mid {
    background: var(--ink-soft);
}

/* ===== EYEBROW ===== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 15px 32px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--amber);
    color: var(--ink);
    box-shadow: 0 0 28px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
    background: var(--amber-lt);
    box-shadow: 0 0 44px rgba(245, 158, 11, 0.55);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.22);
}

.btn-outline:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.btn-rose {
    background: var(--rose);
    color: var(--white);
    box-shadow: 0 0 24px rgba(244, 114, 182, 0.3);
}

.btn-rose:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--blue-m);
    color: var(--ink);
    box-shadow: 0 0 24px rgba(96, 165, 250, 0.3);
}

.btn-blue:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* ===== PHONE NUMBER PILL ===== */
.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--glow);
    border: 1.5px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    padding: 12px 28px;
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.phone-pill:hover {
    background: rgba(245, 158, 11, 0.28);
    border-color: var(--amber);
    box-shadow: 0 0 36px rgba(245, 158, 11, 0.3);
}

.phone-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: var(--amber);
}

/* ===== DISCLAIMER ===== */
.disclaimer {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 14px;
    line-height: 1.5;
}

.section-light .disclaimer {
    color: rgba(13, 15, 20, 0.4);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    background: rgba(13, 15, 20, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.navbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.brand {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.brand span {
    color: var(--amber);
}
.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}
.nav-cta {
    font-size: 0.85rem;
    padding: 10px 22px;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 65%),
        var(--ink);
}

/* Skyline silhouette via CSS */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background:
        linear-gradient(transparent 40%, rgba(245, 158, 11, 0.04) 100%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glow);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 1rem;
    color: var(--amber);
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title .amber {
    color: var(--amber);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

/* ===== WAVE VISUAL ===== */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dial-ring-wrap {
    position: relative;
    width: 320px;
    height: 320px;
}

.dial-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(245, 158, 11, 0.2);
    animation: spin-slow 18s linear infinite;
}

.dial-ring:nth-child(2) {
    inset: 24px;
    border-color: rgba(245, 158, 11, 0.12);
    animation-direction: reverse;
    animation-duration: 26s;
}

.dial-ring:nth-child(3) {
    inset: 54px;
    border-color: rgba(245, 158, 11, 0.08);
    animation-duration: 34s;
}

@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

.dial-center {
    position: absolute;
    inset: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0.04) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.waveform {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
}

.waveform .bar {
    width: 4px;
    border-radius: 4px;
    background: var(--amber);
    animation: wave-bar 1.2s ease-in-out infinite;
    transform-origin: center bottom;
}

.waveform .bar:nth-child(1) {
    height: 14px;
    animation-delay: 0s;
}

.waveform .bar:nth-child(2) {
    height: 28px;
    animation-delay: 0.1s;
}

.waveform .bar:nth-child(3) {
    height: 36px;
    animation-delay: 0.2s;
}

.waveform .bar:nth-child(4) {
    height: 24px;
    animation-delay: 0.3s;
}

.waveform .bar:nth-child(5) {
    height: 40px;
    animation-delay: 0.4s;
}

.waveform .bar:nth-child(6) {
    height: 28px;
    animation-delay: 0.5s;
}

.waveform .bar:nth-child(7) {
    height: 18px;
    animation-delay: 0.6s;
}

.waveform .bar:nth-child(8) {
    height: 32px;
    animation-delay: 0.7s;
}

.waveform .bar:nth-child(9) {
    height: 22px;
    animation-delay: 0.8s;
}

@keyframes wave-bar {

    0%,
    100% {
        transform: scaleY(0.45);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.dial-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    opacity: 0.7;
}

/* Dot markers on the outer ring */
.ring-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--amber);
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
}

/* ==================== TICKER ==================== */
.ticker-wrap {
    background: var(--amber);
    padding: 10px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 28s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    flex-shrink: 0;
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 0 32px;
}

.ticker-item::before {
    content: '◆  ';
}

@keyframes ticker {
    to {
        transform: translateX(-50%);
    }
}

/* ==================== ABOUT / STATS ==================== */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 18px;
}

.about-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--ink-mid);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 0 24px var(--glow-sm);
    transform: translateY(-3px);
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--amber);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
}

/* ==================== HOW IT WORKS ==================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
    border: 1.5px solid transparent;
}

.step-card:hover {
    border-color: var(--amber);
    box-shadow: 0 8px 40px rgba(245, 158, 11, 0.12);
    transform: translateY(-4px);
}

.step-num {
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 18px;
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--amber-dk);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.step-card h3 {
    color: var(--ink);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.step-card p {
    font-size: 0.9rem;
    color: #6b7280;
}

.connector {
    position: absolute;
    top: 58px;
    right: -14px;
    z-index: 1;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), transparent);
}

.step-card:last-child .connector {
    display: none;
}

/* ==================== GENDER CARDS ==================== */
.gender-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 20px;
}

.gender-card {
    border-radius: var(--radius-lg);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
}

.gender-card-women {
    background: linear-gradient(135deg, #1a0a12 0%, #2d1424 100%);
    border: 1.5px solid rgba(244, 114, 182, 0.2);
}

.gender-card-men {
    background: linear-gradient(135deg, #0a0f1a 0%, #101d36 100%);
    border: 1.5px solid rgba(96, 165, 250, 0.2);
}

.gender-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
}

.gender-card-women::before {
    background: radial-gradient(circle, rgba(244, 114, 182, 0.12) 0%, transparent 70%);
}

.gender-card-men::before {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
}

.gender-icon {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.gender-card h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 6px;
}

.gender-tagline {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 28px;
}

.gender-card-women .gender-tagline {
    color: rgba(244, 114, 182, 0.7);
}

.gender-card-men .gender-tagline {
    color: rgba(96, 165, 250, 0.7);
}

.feature-list {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-list li .check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.gender-card-women .check {
    background: rgba(244, 114, 182, 0.2);
}

.gender-card-men .check {
    background: rgba(96, 165, 250, 0.2);
}

.feature-list li strong {
    color: var(--white);
}

/* ==================== WHY CHOOSE ==================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.why-card {
    background: var(--ink-mid);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
}

.why-card:hover {
    border-color: rgba(245, 158, 11, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.why-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--amber);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1rem;
}

.why-card p {
    font-size: 0.88rem;
}

/* ==================== PRIVACY / SAFETY ==================== */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.safety-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 36px 30px;
}

.safety-num {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(245, 158, 11, 0.15);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 12px;
}

.safety-card h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1rem;
}

/* ==================== FAQ ==================== */
.faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--ink-mid);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: rgba(245, 158, 11, 0.25);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--white);
    transition: color var(--transition);
}

.faq-q:hover {
    color: var(--amber);
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--glow);
    border: 1px solid rgba(245, 158, 11, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
    color: var(--amber);
    font-size: 1rem;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s;
    padding: 0 28px;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 28px 22px;
}

.faq-a p {
    font-size: 0.92rem;
    color: var(--muted);
}

/* ==================== FINAL CTA ==================== */
.cta-section {
    background: linear-gradient(135deg, #0a0c11 0%, #1a1408 50%, #0a0c11 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.09) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-inner h2 {
    margin-bottom: 14px;
}

.cta-inner .sub {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

/* ==================== FOOTER ==================== */
footer {
    background: #080A0F;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.footer-brand span {
    color: var(--amber);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
    text-align: center;
}

/* ==================== SCROLL REVEAL ==================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gender-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .connector {
        display: none;
    }
}

@media (max-width: 600px) {
    section {
        padding: 72px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gender-card {
        padding: 36px 28px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copy {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    .dial-ring,
    .ticker-track,
    .waveform .bar,
    .hero-badge .dot {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
