:root {
    --color-bg: #0E1C23;
    --color-fg: #ffffff;
    --color-accent: #F59E0B;
    --color-accent-dark: #D97706;
    --color-ink: #0E1C23;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ---------- Scroll-reveal animations ---------- */
[data-animate] {
    opacity: 0;
    transition: opacity 750ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-animate="fade-up"]    { transform: translateY(28px); }
[data-animate="slide-left"] { transform: translateX(-40px); }
[data-animate="slide-right"]{ transform: translateX(40px); }
[data-animate="fade"]       { transform: none; }

[data-animate].is-in-view {
    opacity: 1;
    transform: none;
}

/* Staggered children — parent gets .is-in-view, children reveal in sequence */
[data-stagger] > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-stagger].is-in-view > * {
    opacity: 1;
    transform: none;
}

[data-stagger].is-in-view > *:nth-child(1) { transition-delay: 60ms; }
[data-stagger].is-in-view > *:nth-child(2) { transition-delay: 140ms; }
[data-stagger].is-in-view > *:nth-child(3) { transition-delay: 220ms; }
[data-stagger].is-in-view > *:nth-child(4) { transition-delay: 300ms; }
[data-stagger].is-in-view > *:nth-child(5) { transition-delay: 380ms; }
[data-stagger].is-in-view > *:nth-child(6) { transition-delay: 460ms; }
[data-stagger].is-in-view > *:nth-child(7) { transition-delay: 540ms; }
[data-stagger].is-in-view > *:nth-child(8) { transition-delay: 620ms; }

@media (prefers-reduced-motion: reduce) {
    [data-animate],
    [data-stagger] > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-fg);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    /* Prevent horizontal scroll from scroll-reveal animations that start
       elements a few pixels off-screen (e.g. slide-right's translateX(40px)). */
    overflow-x: clip;
}
 
/* ---------- Hero ---------- */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    max-height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero__bg,
.hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero__bg img {
    transform: scale(1.25);
    transform-origin: right bottom;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

.hero__logo {
    position: absolute;
    top: clamp(1rem, 2.5vw, 2rem);
    left: clamp(1rem, 2.5vw, 2rem);
    width: clamp(109px, 12.1vw, 169px);
    height: auto;
    z-index: 2;
}

.hero__content {
    position: absolute;
    top: 50%;
    left: clamp(1.5rem, 4vw, 4rem);
    transform: translateY(-50%);
    max-width: min(45%, 560px);
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.hero__title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.4vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.005em;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.hero__rule {
    width: 64px;
    height: 4px;
    background: var(--color-accent);
    margin: 0;
    box-shadow: 0 8px 20px -6px rgba(245, 158, 11, 0.6);
}

.hero__subtitle {
    margin: 0;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.01em;
    text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}

.hero__cta {
    position: relative;
    display: inline-block;
    margin-top: 0.5rem;
    padding: 1.15rem 2.25rem;
    background: var(--color-accent);
    color: var(--color-ink);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 2px;
    overflow: hidden;
    isolation: isolate;
    transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
    box-shadow: 0 20px 40px -12px rgba(245, 158, 11, 0.55);
}

.hero__cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.45) 50%, transparent 65%);
    transform: translateX(-120%);
    animation: cta-shimmer 3.6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cta-shimmer {
    0%, 20%   { transform: translateX(-120%); }
    55%       { transform: translateX(120%); }
    100%      { transform: translateX(120%); }
}

.hero__cta:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 26px 50px -14px rgba(245, 158, 11, 0.65);
}

.hero__cta:hover::before {
    animation-play-state: paused;
}

.hero__scroll {
    position: absolute;
    bottom: clamp(1rem, 3vh, 2rem);
    left: clamp(1.5rem, 4vw, 4rem);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
    z-index: 2;
    transition: color 150ms ease;
}

.hero__scroll:hover {
    color: #fff;
}

.hero__scroll-icon {
    width: 18px;
    height: 18px;
    animation: hero-scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(5px); }
}

/* Mobile + narrow tablet — full-viewport hero with image as backdrop, content
   overlaid at bottom-left. On phones the picture element swaps to the
   original centered-gate image (assets/hero mobile.jpg) which has sea on
   both sides, so cover-fitting a portrait viewport keeps the gate centered
   and visible behind the content overlay. */
@media (max-width: 899px) {
    .hero {
        aspect-ratio: auto;
        min-height: 100svh;
        min-height: 100vh; /* fallback for browsers without svh */
        max-height: none;
    }

    .hero__bg img {
        transform: none;
        transform-origin: initial;
        object-position: center center;
    }

    .hero__overlay {
        background: linear-gradient(180deg,
            rgba(0,0,0,0.25) 0%,
            rgba(0,0,0,0.45) 55%,
            rgba(0,0,0,0.78) 100%);
    }

    .hero__logo {
        top: 1.25rem;
        left: 1.25rem;
        width: clamp(88px, 22vw, 130px);
    }

    .hero__content {
        top: auto;
        bottom: clamp(4.5rem, 14vh, 6rem);
        left: 1.5rem;
        right: 1.5rem;
        transform: none;
        max-width: none;
        gap: 1rem;
    }

    .hero__title {
        font-size: clamp(1.9rem, 7.5vw, 2.75rem);
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__cta {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }

    .hero__scroll {
        bottom: 1.25rem;
        left: 0;
        right: 0;
        margin-inline: auto;
        width: fit-content;
    }
}

/* Hero page-load reveal — one-shot animation on first paint */
@keyframes hero-reveal {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__logo,
.hero__content > *,
.hero__scroll {
    opacity: 0;
    animation: hero-reveal 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__logo                       { animation-delay: 150ms; }
.hero__content > *:nth-child(1)   { animation-delay: 250ms; }
.hero__content > *:nth-child(2)   { animation-delay: 330ms; }
.hero__content > *:nth-child(3)   { animation-delay: 410ms; }
.hero__content > *:nth-child(4)   { animation-delay: 490ms; }
.hero__content > *:nth-child(5)   { animation-delay: 570ms; }
.hero__scroll                     { animation-delay: 900ms; }

@media (prefers-reduced-motion: reduce) {
    .hero__logo,
    .hero__content > *,
    .hero__scroll {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .hero__cta::before,
    .hero__scroll-icon {
        animation: none !important;
    }
}

/* ---------- Sign-up Section ---------- */
.signup {
    background: #ffffff;
    color: var(--color-ink);
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.signup__inner {
    width: min(90%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: stretch;
}

.signup__eyebrow {
    margin: 0 0 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.signup__title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.signup__title-accent {
    color: var(--color-accent);
    font-style: italic;
    font-weight: 700;
}

.signup__lede {
    margin: 0 0 2.25rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    max-width: 46ch;
}

.signup__points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.signup__points li {
    padding: 1.15rem 0;
    border-top: 1px solid #e5e5e5;
}

.signup__points li:first-child {
    border-top: none;
    padding-top: 0;
}

.signup__points li:last-child {
    padding-bottom: 0;
}

.signup__points h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    color: var(--color-ink);
}

.signup__points p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #555;
}

.signup__points-footer {
    margin: 2rem 0 0;
    padding: 0.4rem 0 0.4rem 1.1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    border-left: 3px solid var(--color-accent);
}

/* Consult card (right column) */
.signup__form-wrap {
    display: flex;
    height: 100%;
}

.consult-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25), 0 8px 20px -10px rgba(0,0,0,0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.15rem;
}

.consult-card__logo {
    display: block;
    width: clamp(110px, 12vw, 140px);
    height: auto;
    margin-bottom: 0.25rem;
}

.consult-card__title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.1vw, 1.9rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: var(--color-ink);
    max-width: 22ch;
}

.consult-card__lede {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    max-width: 44ch;
}

.consult-card__cta {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    padding: 1rem 1.5rem;
    background: var(--color-ink);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-align: center;
    border-radius: 2px;
    transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.consult-card__cta:hover {
    background: #1a2f3a;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -12px rgba(14, 28, 35, 0.55);
}

.consult-card__divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    border: none;
    margin: 0.35rem 0;
}

.consult-card__notes-title {
    margin: 0;
    align-self: flex-start;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--color-ink);
    letter-spacing: -0.005em;
}

.consult-card__notes {
    align-self: stretch;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #555;
}

.consult-card__notes strong {
    color: var(--color-ink);
    font-weight: 700;
    text-decoration: underline;
}

.consult-card__contacts {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    text-align: left;
}

.consult-card__contact-label {
    margin: 0 0 0.15rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-ink);
}

.consult-card__contact-value {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 150ms ease;
}

.consult-card__contact-value:hover {
    color: var(--color-accent);
}

.signup__form-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-top: 4px solid var(--color-accent);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25), 0 8px 20px -10px rgba(0,0,0,0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.signup__form-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.signup__form-logo {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    object-fit: contain;
    opacity: 0.9;
}

.signup__form-title {
    margin: 0 0 0.35rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.signup__form-sub {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.signup__form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.field label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.field label span {
    color: var(--color-accent);
}

.field input,
.field select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 0.75rem 0.85rem;
    font: inherit;
    font-size: 0.95rem;
    color: var(--color-ink);
    background: #fafafa;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    transition: border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

.field select {
    background-image: linear-gradient(45deg, transparent 50%, var(--color-ink) 50%), linear-gradient(135deg, var(--color-ink) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 2.25rem;
}

.signup__submit {
    margin-top: 0.5rem;
    padding: 1rem 1.25rem;
    font: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-ink);
    background: var(--color-accent);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

.signup__submit:hover:not(:disabled) {
    background: var(--color-accent-dark);
    box-shadow: 0 12px 24px -10px rgba(245, 158, 11, 0.55);
}

.signup__submit:active:not(:disabled) { transform: translateY(1px); }

.signup__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.signup__form-error {
    margin: 0;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
    color: #c91019;
    background: rgba(201, 16, 25, 0.08);
    border-left: 3px solid #c91019;
}

.signup__success {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.signup__success.is-active {
    display: flex;
    animation: successFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.signup__success-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    border: 1px solid #e0e0e0;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    transition: background 150ms ease, color 150ms ease;
    padding: 0;
}

.signup__success-close:hover {
    background: #e8e8e8;
    color: #111;
}

.signup__success-close svg {
    width: 15px;
    height: 15px;
}

.signup__success-body {
    text-align: center;
    padding: 2rem;
}

.signup__success-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid var(--color-accent);
    color: var(--color-accent-dark);
    margin-bottom: 1.25rem;
}

.signup__success-check svg {
    width: 28px;
    height: 28px;
}

.signup__success-body h3 {
    margin: 0 0 0.5rem;
    color: var(--color-ink);
    font-size: 1.5rem;
    font-weight: 800;
}

.signup__success-body p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

@keyframes successFadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

/* ---------- Info Section ---------- */
.info {
    position: relative;
    padding: clamp(5rem, 10vw, 9rem) 0 clamp(5.5rem, 11vw, 10rem);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
}

.info__bg,
.info__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.info__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(245, 158, 11, 0.1), transparent 55%),
        linear-gradient(180deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.82) 50%, rgba(10,10,10,0.92) 100%);
    z-index: -1;
}

.info__inner {
    width: min(90%, 1180px);
    margin: 0 auto;
}

.info__eyebrow {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.info__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.info__split-cta {
    margin-top: 2.25rem;
}

.info__title {
    margin: 0 0 1.25rem;
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 3.6vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.005em;
}

.info__title span {
    color: var(--color-accent);
    font-weight: 700;
}

.info__benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info__benefits li {
    padding: 1.05rem 0;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.info__benefits li:first-child {
    border-top: none;
    padding-top: 0;
}

.info__benefits li:last-child {
    padding-bottom: 0;
}

.info__benefits h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    color: #fff;
}

.info__benefits p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.7);
}

.info__footnote {
    margin: 1.75rem 0 0;
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(255,255,255,0.55);
}

.info__lede {
    margin: 0;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.75);
}

.info__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.75rem);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.info-card {
    position: relative;
    padding: clamp(1.75rem, 2.5vw, 2.25rem) clamp(1.5rem, 2vw, 2rem);
    background: rgba(20, 20, 20, 0.72);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    text-align: center;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.info-card:hover {
    transform: translateY(-4px);
    background: rgba(14, 28, 35, 0.9);
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 20px 50px -20px rgba(245, 158, 11, 0.35);
}

.info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    background: rgba(245, 158, 11, 0.12);
    color: var(--color-accent);
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.info-card__icon svg {
    width: 26px;
    height: 26px;
}

.info-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}

.info-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.info__cta {
    text-align: center;
}

.info__btn {
    display: inline-block;
    padding: 1.05rem 2.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-ink);
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 2px;
    transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.info__btn:hover {
    background: var(--color-accent-dark);
    box-shadow: 0 14px 30px -10px rgba(245, 158, 11, 0.6);
    transform: translateY(-1px);
}

.info__btn:active { transform: translateY(0); }

@media (max-width: 860px) {
    .info__split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ---------- About Section ---------- */
.about {
    background: var(--color-bg);
    color: #fff;
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(245, 158, 11, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 20%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.about__inner {
    width: min(90%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.about__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 3vw, 3rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
}

.about__logo-wrap::before,
.about__logo-wrap::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: var(--color-accent);
    border-style: solid;
    opacity: 0.7;
}

.about__logo-wrap::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.about__logo-wrap::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.about__logo {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
}

.about__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.about__title {
    margin: 0 0 1.5rem;
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about__title span {
    color: var(--color-accent);
    font-style: italic;
}

.about__lead {
    margin: 0 0 1.25rem;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding-left: 1.1rem;
    border-left: 2px solid var(--color-accent);
}

.about__text {
    margin: 0 0 1rem;
    font-size: clamp(0.9rem, 1vw, 0.98rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
}

.about__text:last-child { margin-bottom: 0; }

.about__accent {
    color: var(--color-accent);
    font-style: italic;
    font-weight: 600;
}

.about__lead .about__accent { font-weight: 700; }

@media (max-width: 860px) {
    .about__inner {
        width: 88%;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about__logo-wrap { max-width: 280px; }
}

@media (max-width: 860px) {
    .signup__inner {
        width: 88%;
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .signup__form-wrap { height: auto; }
    .info__inner { width: 88%; }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: -2;
}

.cta-banner__bg img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10%;
    right: 10%;
    width: 80%;
    height: 100%;
    object-fit: cover;
    object-position: center -380px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.55) 80%, rgba(10,10,10,0.85) 100%),
        linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.5) 100%);
    z-index: -1;
}

.cta-banner__inner {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    display: flex;
    justify-content: flex-end;
}

.cta-banner__content {
    max-width: 520px;
    text-align: left;
}

.cta-banner__eyebrow {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 700;
}

.cta-banner__title {
    margin: 0 0 1.75rem;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.cta-banner__title span {
    color: var(--color-accent);
    font-style: italic;
}

.cta-banner__tagline {
    margin: 1.25rem 0 0;
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
    max-width: 100%;
    text-wrap: pretty;
}

.cta-banner__btn {
    position: relative;
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-ink);
    background: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 2px;
    overflow: hidden;
    isolation: isolate;
    transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.cta-banner__btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.45) 50%, transparent 65%);
    transform: translateX(-120%);
    animation: cta-shimmer 3.6s ease-in-out infinite;
    pointer-events: none;
}

.cta-banner__btn:hover {
    background: var(--color-accent-dark);
    box-shadow: 0 14px 30px -10px rgba(245, 158, 11, 0.6);
    transform: translateY(-1px);
}

.cta-banner__btn:hover::before {
    animation-play-state: paused;
}

.cta-banner__btn:active { transform: translateY(0); }

@media (max-width: 1024px) {
    .cta-banner__inner { width: 88%; justify-content: center; }
    .cta-banner__content { text-align: center; max-width: 100%; }

    /* Desktop uses a masked, off-center image strip. Anything narrower than
       an iPad Pro (1024px portrait) needs the image full-width or the
       -380px offset shows only a thin strip with the rest black. */
    .cta-banner__bg img {
        left: 0;
        right: 0;
        width: 100%;
        object-position: center center;
        -webkit-mask-image: none;
                mask-image: none;
    }

    .cta-banner__overlay {
        background: linear-gradient(180deg,
            rgba(10,10,10,0.25) 0%,
            rgba(10,10,10,0.45) 50%,
            rgba(10,10,10,0.65) 100%);
    }
}

/* ---------- Webinar Timezone Block ---------- */
.webinar-times {
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid #e8e8e8;
}

.webinar-times__label {
    margin: 0 0 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
}

.wt-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.28rem 0;
    font-size: 0.78rem;
    border-bottom: 1px solid #f2f2f2;
}

.wt-row:last-child { border-bottom: none; }

.wt-label {
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.wt-time {
    color: #666;
    text-align: right;
    white-space: nowrap;
}

.wt-row--local {
    margin-top: 0.4rem;
    padding: 0.35rem 0.6rem;
    background: rgba(245, 158, 11, 0.1);
    border-left: 2px solid var(--color-accent);
    border-bottom: none;
}

.wt-row--local .wt-label {
    color: var(--color-ink);
    font-weight: 700;
}

.wt-row--local .wt-time {
    color: var(--color-ink);
    font-weight: 600;
}

