:root {
    --blue: #2456d8;
    --blue-dark: #1d49bd;
    --green: #00a86b;
    --ink: #14213d;
    --text: #182433;
    --muted: #667085;
    --bg: #f4f6fa;
    --border: #dce3ec;
    --white: #fff;
    --shadow: 0 16px 44px rgba(20, 33, 61, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font: 15px/1.55 Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
button, input { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.live-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}
.header-inner { height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.live-brand { display: inline-flex; align-items: center; }
.live-brand img { width: 166px; height: 50px; object-fit: contain; }
.live-header nav { display: flex; align-items: center; gap: 24px; font-weight: 700; }
.live-header nav a { color: #344054; }
.live-header nav a:hover { color: var(--blue); }
.live-header nav .login-link {
    padding: 8px 13px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: #fff;
    color: var(--blue);
}
.online {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #e9f8f2;
    color: #008f5a;
    font-size: 12px;
}
.online i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(0,168,107,.12); }

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 64px;
    background:
        radial-gradient(circle at 86% 6%, rgba(0, 168, 107, 0.11), transparent 28%),
        radial-gradient(circle at 4% 0%, rgba(36, 86, 216, 0.1), transparent 30%),
        var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 64px; }
.eyebrow {
    color: var(--blue);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.hero h1 {
    max-width: 690px;
    margin: 12px 0 20px;
    color: var(--ink);
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: -.045em;
}
.hero-copy > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.benefits { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 24px; }
.benefits span {
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: #344054;
    font-size: 13px;
    font-weight: 700;
}
.benefits b { color: var(--green); margin-right: 4px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.hero-side { position: relative; min-height: 520px; }
.logo-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 64%;
    height: 330px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}
.logo-panel img { width: 88%; height: 88%; object-fit: contain; }
.meeting-card {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 72%;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(20, 33, 61, .15);
}
.card-kicker { margin-bottom: 6px; color: var(--green); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.meeting-card h2 { margin: 0 0 18px; color: var(--ink); font-size: 21px; line-height: 1.3; }
.meeting-card label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 750; }
.room-field { display: grid; grid-template-columns: 1fr 44px; margin-bottom: 12px; }
.room-field input {
    min-width: 0;
    height: 44px;
    padding: 0 13px;
    border: 1px solid #cfd8e3;
    border-right: 0;
    border-radius: 8px 0 0 8px;
    color: var(--text);
    outline: none;
}
.room-field input:focus { border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.room-field input.shuffle-active { color: var(--blue); }
.room-field button {
    border: 1px solid var(--blue);
    border-radius: 0 8px 8px 0;
    background: #eef3ff;
    color: var(--blue);
    cursor: pointer;
    font-size: 21px;
    font-weight: 800;
}
.button {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .15s, background .15s, border-color .15s;
}
.button:hover { transform: translateY(-1px); }
.button.primary { width: 100%; background: var(--blue); color: #fff; }
.button.primary:hover { background: var(--blue-dark); }
.button.secondary { width: 100%; margin-top: 8px; border-color: var(--border); background: #fff; color: #344054; }
.button.secondary:hover { border-color: #b8c5d6; background: #f8fafc; }
.last-room { display: none; align-items: center; gap: 6px; margin-top: 12px; color: var(--muted); font-size: 12px; }
.last-room a { font-weight: 750; }

.section { padding: 82px 0; }
.section-heading { max-width: 720px; margin-bottom: 32px; }
.section-heading h2 { margin: 8px 0 10px; color: var(--ink); font-size: clamp(30px, 4vw, 42px); line-height: 1.16; letter-spacing: -.03em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
}
.feature-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: #eaf0ff;
    color: var(--blue);
    font-size: 22px;
    font-weight: 850;
}
.feature-icon.green { background: #e9f8f2; color: var(--green); }
.feature-card h3 { margin: 17px 0 8px; color: var(--ink); font-size: 18px; }
.feature-card p { margin: 0; color: var(--muted); }

.pricing-section { background: #fff; border-top: 1px solid var(--border); }
.pricing-heading { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.launch-offer {
    max-width: 390px;
    padding: 14px 17px;
    border: 1px solid #b8ead7;
    border-radius: 10px;
    background: #effaf6;
}
.launch-offer strong, .launch-offer span { display: block; }
.launch-offer strong { color: #008f5a; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.launch-offer span { margin-top: 3px; color: #285646; font-weight: 750; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; align-items: stretch; }
.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(20,33,61,.05);
}
.price-card.featured { border: 2px solid var(--blue); padding: 22px; box-shadow: 0 18px 44px rgba(36,86,216,.14); }
.popular {
    position: absolute;
    top: -13px;
    left: 20px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.price-head h3 { margin: 0; color: var(--ink); font-size: 20px; }
.price-head p { min-height: 43px; margin: 5px 0 16px; color: var(--muted); font-size: 13px; }
.price strong, .price span { display: block; }
.price strong { color: var(--ink); font-size: 30px; line-height: 1.1; letter-spacing: -.035em; }
.price span { margin-top: 4px; color: var(--muted); font-size: 12px; }
.annual { min-height: 33px; margin-top: 7px; color: var(--green); font-size: 12px; font-weight: 750; }
.price-card ul { flex: 1; list-style: none; margin: 20px 0 22px; padding: 18px 0 0; border-top: 1px solid #edf0f4; }
.price-card li { position: relative; margin: 10px 0; padding-left: 20px; color: #475467; font-size: 13px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.price-button { width: 100%; margin-top: auto !important; text-align: center; }
.comparison { margin-top: 24px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--bg); }
.comparison summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 20px;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}
.comparison summary::-webkit-details-marker { display: none; }
.comparison[open] summary span { transform: rotate(45deg); }
.comparison-scroll { overflow-x: auto; border-top: 1px solid var(--border); background: #fff; }
.comparison table { width: 100%; min-width: 760px; border-collapse: collapse; }
.comparison th, .comparison td { padding: 12px 15px; border-bottom: 1px solid #edf0f4; text-align: center; }
.comparison th { background: #f8fafc; color: var(--ink); font-size: 12px; }
.comparison th:first-child, .comparison td:first-child { text-align: left; font-weight: 700; }
.comparison td { color: #475467; font-size: 13px; }
.extras {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 36px;
    margin-top: 24px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
}
.extras h3 { margin: 8px 0 0; font-size: 24px; line-height: 1.25; }
.extras ul { list-style: none; margin: 0; padding: 0; }
.extras li { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.extras li:last-child { border: 0; }
.extras li span { color: #c8d5e5; }
.extras li strong { white-space: nowrap; color: #fff; }

.final-cta { padding: 62px 0; background: linear-gradient(135deg, var(--blue-dark), var(--blue) 58%, #198e71); color: #fff; }
.final-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.eyebrow.light { color: #bfe9dc; }
.final-cta h2 { max-width: 680px; margin: 8px 0; font-size: clamp(29px, 4vw, 42px); line-height: 1.15; letter-spacing: -.03em; }
.final-cta p { margin: 0; color: rgba(255,255,255,.78); font-size: 16px; }
.light-button { flex: 0 0 auto; background: #fff; color: var(--blue); }

footer { padding: 30px 0; background: var(--ink); color: #9fb0c4; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.footer-inner > img { width: 130px; height: 44px; object-fit: contain; padding: 2px; border-radius: 7px; background: #fff; }
.footer-inner p { margin: 0; }
.footer-inner div { display: flex; align-items: center; gap: 18px; }
.footer-inner a { color: #d8e3f0; font-weight: 700; }

@media (max-width: 1050px) {
    .hero-grid { gap: 35px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 860px) {
    .live-header nav a { display: none; }
    .hero { padding-top: 52px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-side { min-height: 540px; max-width: 620px; width: 100%; margin: 0 auto; }
    .feature-grid { grid-template-columns: 1fr; }
    .pricing-heading, .final-inner { align-items: flex-start; flex-direction: column; }
    .extras { grid-template-columns: 1fr; gap: 20px; }
    .footer-inner { grid-template-columns: auto 1fr; }
    .footer-inner div { grid-column: 1 / 3; }
}
@media (max-width: 620px) {
    .shell { width: min(100% - 28px, 1180px); }
    .header-inner { height: 66px; }
    .live-brand img { width: 142px; height: 44px; }
    .online { padding: 6px 9px; }
    .live-header nav .login-link { display: inline-flex; padding: 7px 10px; }
    .live-header nav .online { display: none; }
    .hero { padding: 42px 0 48px; }
    .hero h1 { font-size: 39px; }
    .hero-copy > p { font-size: 16px; }
    .hero-side { min-height: auto; display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
    .logo-panel, .meeting-card { position: relative; inset: auto; width: 100%; }
    .logo-panel { height: 280px; order: 2; }
    .meeting-card { order: 1; padding: 21px; }
    .section { padding: 62px 0; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-head p { min-height: auto; }
    .footer-inner { display: flex; align-items: flex-start; flex-direction: column; }
    .footer-inner div { flex-wrap: wrap; }
}
