/* ============================================================
   TeleWeeks — pre-launch landing site
   Brand palette & type extracted from the original Elementor build
   ============================================================ */

@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-Variable.ttf") format("truetype-variations"),
         url("/fonts/Satoshi-Variable.ttf") format("truetype");
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("/fonts/Satoshi-VariableItalic.ttf") format("truetype-variations"),
         url("/fonts/Satoshi-VariableItalic.ttf") format("truetype");
    font-weight: 300 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --navy: #1A2B5B;
    --navy-soft: #3954A1;
    --ink: #737E87;
    --white: #FFFFFF;
    --paper: #F9F9FF;
    --line: rgba(26, 43, 91, 0.10);

    --grad-hero: linear-gradient(180deg, #3954A1 0%, #9AA2DA 100%);
    --grad-accent: linear-gradient(232deg, #9F95F8 0%, #5E7ACD 100%);
    --grad-accent-h: linear-gradient(90deg, #9F95F8 0%, #5E7ACD 100%);
    --grad-soft: linear-gradient(200deg, #4562B6 0%, #EEDAD7 100%);

    --r-card: 28px;
    --r-pill: 999px;
    --shadow: 0 24px 60px -28px rgba(26, 43, 91, 0.35);
    --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: 24px;
}

.section { padding: 84px 0; }

.section__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.section__lede {
    color: var(--ink);
    font-size: clamp(16px, 1.4vw, 19px);
    max-width: 760px;
    margin: 0;
}

.muted { color: var(--ink); font-weight: 400; }
.req { color: #E0567A; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--grad-accent); color: #fff; box-shadow: 0 14px 30px -12px rgba(94, 122, 205, .7); }
.btn--light { background: #fff; color: var(--navy); box-shadow: 0 10px 24px -14px rgba(26,43,91,.5); }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--block { width: 100%; padding: 16px 28px; font-size: 16px; }

/* ---------- Pill label ---------- */
.pill {
    display: inline-block;
    padding: 9px 22px;
    border-radius: var(--r-pill);
    background: var(--grad-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

/* ---------- Announcement bar ---------- */
.announcement {
    background: var(--grad-accent-h);
    color: #fff;
    font-size: 14px;
}
.announcement__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 24px;
    flex-wrap: wrap;
}
.announcement__cta {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(26, 43, 91, 0.92);
    backdrop-filter: blur(10px);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 16px;
}
.site-header__logo img { height: 30px; width: auto; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--grad-hero);
    color: #fff;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background: url("/img/Lines.png") center/cover no-repeat;
    opacity: .18;
    mix-blend-mode: screen;
    pointer-events: none;
}
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
    padding-block: 96px 0;
    min-height: 620px;
}
.hero__title {
    font-size: clamp(44px, 6.5vw, 84px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 22px;
}
.hero__subtitle {
    font-size: clamp(18px, 2vw, 24px);
    max-width: 520px;
    margin: 0 0 32px;
    color: rgba(255,255,255,.92);
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero__disclaimer { font-size: 13px; color: rgba(255,255,255,.65); margin: 0; }
.hero__media { align-self: end; }
.hero__img { width: 100%; height: auto; }
.hero__img--mobile { display: none; }

/* ---------- Intro ---------- */
.intro { background: var(--white); }
.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
.intro__heading {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}
.intro__text { color: var(--ink); font-size: 17px; margin: 0; }

/* ---------- Cards ---------- */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    padding: 34px;
    box-shadow: var(--shadow);
}
.card__title { font-size: 21px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.01em; }
.card__text { color: var(--ink); margin: 0; font-size: 16px; }

/* ---------- How it works ---------- */
.how { background: var(--paper); text-align: center; }
.how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: left;
}
.step__icon, .mv__icon {
    width: 58px; height: 58px;
    border-radius: 18px;
    display: grid; place-items: center;
    background: var(--grad-accent);
    margin-bottom: 22px;
}
.step__icon img, .mv__icon img { width: 30px; height: 30px; filter: brightness(0) invert(1); }

/* ---------- About ---------- */
.about { position: relative; color: #fff; overflow: hidden; }
.about__bg { position: absolute; inset: 0; background: var(--grad-soft); }
.about__bg::after {
    content: ""; position: absolute; inset: 0;
    background: url("/img/Bg.png") center/cover no-repeat; opacity: .14;
}
.about__inner { position: relative; }
.about .pill { background: rgba(255,255,255,.18); backdrop-filter: blur(4px); }
.about__statement {
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin: 0 0 20px;
}
.about__lede { max-width: 820px; font-size: 18px; color: rgba(255,255,255,.9); margin: 0 0 48px; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.about .mv { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22); box-shadow: none; color: #fff; backdrop-filter: blur(6px); }
.about .mv .card__text { color: rgba(255,255,255,.85); }

/* ---------- Differentiators ---------- */
.different { background: var(--white); }
.different__head { max-width: 820px; margin-bottom: 48px; }
.features {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feature {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
    background: var(--paper);
    position: relative;
}
.feature::before {
    content: "";
    display: block;
    width: 38px; height: 4px;
    border-radius: 4px;
    background: var(--grad-accent);
    margin-bottom: 18px;
}
.feature__title { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.feature__text { color: var(--ink); margin: 0; font-size: 15px; }

/* ---------- Waitlist ---------- */
.waitlist { background: var(--paper); }
.waitlist__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.waitlist__mark { width: 48px; height: auto; margin-bottom: 22px; }
.waitlist__card { padding: 40px; }

/* ---------- Forms ---------- */
.form { margin-top: 22px; }
.form__row { margin-bottom: 18px; display: flex; flex-direction: column; }
.form__label { font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.form__input {
    font: inherit;
    color: var(--navy);
    padding: 13px 16px;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    background: #fff;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
    width: 100%;
}
.form__input:focus { border-color: #5E7ACD; box-shadow: 0 0 0 4px rgba(94,122,205,.15); }
textarea.form__input { resize: vertical; min-height: 84px; }
.form__error { color: #E0567A; font-size: 13px; margin-top: 6px; }
.form__summary:not(:empty) {
    background: #FDECF1; color: #B23A5B;
    border-radius: 12px; padding: 12px 16px; margin-bottom: 16px; font-size: 14px;
}
.form__summary ul { margin: 0; padding-left: 18px; }
.form__note { font-size: 12px; color: var(--ink); margin: 14px 0 0; text-align: center; }

.alert { border-radius: 14px; padding: 14px 18px; margin-bottom: 18px; font-size: 15px; }
.alert--success { background: #E7F8EF; color: #1E7A4D; border: 1px solid #B8E8CC; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.78); }
.site-footer__inner { padding-block: 56px 32px; }
.site-footer__top { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 18px; }
.site-footer__logo { height: 30px; width: auto; }
.site-footer__tagline { font-size: 17px; font-weight: 600; color: #fff; margin: 0; }
.site-footer__disclaimer { max-width: 760px; font-size: 14px; margin: 0 0 32px; line-height: 1.7; }
.site-footer__bottom {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; font-size: 14px;
}
.site-footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.site-footer__links a { text-decoration: none; opacity: .85; }
.site-footer__links a:hover { opacity: 1; text-decoration: underline; }

/* ---------- Legal pages ---------- */
.legal-hero {
    background: var(--grad-accent);
    color: #fff;
    padding: 64px 0 72px;
    text-align: center;
}
.legal-hero__badge {
    display: inline-block;
    background: rgba(255,255,255,.18);
    border-radius: var(--r-pill);
    padding: 8px 18px;
    font-size: 13px;
    margin-bottom: 24px;
}
.legal-hero__title { font-size: clamp(36px, 6vw, 64px); font-weight: 800; line-height: 1.05; margin: 0 0 28px; letter-spacing: -0.02em; }
.legal__body { max-width: 820px; }
.legal__updated { color: var(--ink); font-style: italic; margin-bottom: 28px; }
.legal h2 { font-size: 24px; font-weight: 700; margin: 36px 0 12px; letter-spacing: -0.01em; }
.legal p, .legal li { color: #4a5568; font-size: 16px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; padding-block: 64px 0; min-height: 0; text-align: left; }
    .hero__media { max-width: 460px; margin-inline: auto; }
    .intro__grid, .about__grid, .waitlist__inner { grid-template-columns: 1fr; gap: 36px; }
    .how__grid, .features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .section { padding: 60px 0; }
    .how__grid, .features { grid-template-columns: 1fr; }
    .hero__img--desktop { display: none; }
    .hero__img--mobile { display: block; max-width: 320px; margin-inline: auto; }
    .announcement__inner { font-size: 13px; gap: 10px; }
    .site-header__logo img { height: 26px; }
    .waitlist__card, .card { padding: 26px; }
    .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}
