:root {
    --bg: #242933;
    --bg-deep: #1e222b;
    --panel: #2e3440;
    --panel-raised: #373d4a;
    --border: #4c566a;
    --border-soft: rgba(216, 222, 233, 0.12);
    --text: #eceff4;
    --text-soft: #c0c7d4;
    --muted: #9099a6;
    --accent: #88c0d0;
    --accent-strong: #81a1c1;
    --accent-pale: #cce8f0;
    --accent-wash: rgba(136, 192, 208, 0.12);
    --shadow: 0 28px 80px rgba(5, 8, 13, 0.42);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    min-width: 320px;
    background: var(--bg-deep);
    color: var(--text);
    font-family: Candara, "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--text);
    color: var(--bg-deep);
    transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.page-shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(216, 222, 233, 0.08);
    background: rgba(30, 34, 43, 0.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1280px, calc(100% - 48px));
    min-height: 76px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.brand-lockup,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    justify-self: start;
}

.brand-lockup img,
.footer-brand img { border-radius: 8px; }

.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 17px; letter-spacing: 0.02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a { color: var(--text-soft); font-size: 14px; transition: color 160ms ease; }
.header-nav a:hover { color: var(--text); }

.header-inner > .button { justify-self: end; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(136, 192, 208, 0.45);
    border-radius: 10px;
    color: var(--bg-deep);
    background: var(--accent);
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 28px rgba(136, 192, 208, 0.13);
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover { transform: translateY(-2px); background: #9acbd8; box-shadow: 0 14px 34px rgba(136, 192, 208, 0.2); }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-small { min-height: 40px; padding-inline: 16px; font-size: 13px; }
.button-primary { min-width: 174px; }

a:focus-visible { outline: 3px solid rgba(136, 192, 208, 0.72); outline-offset: 4px; }

.hero {
    position: relative;
    overflow: hidden;
    padding: 178px 0 118px;
    background:
        linear-gradient(180deg, rgba(46, 52, 64, 0.62), rgba(30, 34, 43, 0.95)),
        radial-gradient(circle at 50% 20%, rgba(136, 192, 208, 0.09), transparent 38%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.34;
    background-image: linear-gradient(rgba(136, 192, 208, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(136, 192, 208, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 520px; height: 520px; top: -260px; right: -120px; background: radial-gradient(circle, rgba(136, 192, 208, 0.16), transparent 68%); }
.hero-orb-two { width: 400px; height: 400px; left: -250px; bottom: -120px; background: radial-gradient(circle, rgba(94, 129, 172, 0.18), transparent 70%); }

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.35fr);
    align-items: center;
    gap: 70px;
}

.eyebrow,
.section-kicker {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.eyebrow span { width: 28px; height: 1px; background: var(--accent); box-shadow: 0 0 12px rgba(136, 192, 208, 0.6); }

.hero h1 {
    max-width: 640px;
    font-size: clamp(44px, 4.6vw, 64px);
    line-height: 1.03;
    letter-spacing: -0.042em;
    font-weight: 620;
}

.hero h1 em { color: var(--accent-pale); font-style: normal; }

.hero-lead {
    max-width: 580px;
    margin-top: 28px;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 36px; }
.text-link { color: var(--text-soft); font-size: 14px; font-weight: 700; }
.text-link span { display: inline-block; margin-left: 5px; color: var(--accent); transition: transform 160ms ease; }
.text-link:hover span { transform: translateY(3px); }

.hero-product { position: relative; min-width: 0; }
.product-glow { position: absolute; inset: 14% 10%; background: rgba(136, 192, 208, 0.13); filter: blur(70px); }

.browser-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 222, 233, 0.2);
    border-radius: 15px;
    background: var(--panel);
    box-shadow: var(--shadow), 0 0 0 6px rgba(216, 222, 233, 0.025);
}

.browser-bar {
    height: 42px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 13px;
    border-bottom: 1px solid var(--border-soft);
    background: #272c36;
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: #4c566a; }
.browser-dots i:first-child { background: #bf616a; }
.browser-dots i:nth-child(2) { background: #ebcb8b; }
.browser-dots i:last-child { background: #a3be8c; }
.browser-address { padding: 6px 38px; border: 1px solid rgba(216, 222, 233, 0.09); border-radius: 6px; color: #7f8998; background: #242933; font: 9px/1 "Segoe UI", sans-serif; }
.browser-status { justify-self: end; color: var(--accent); font-size: 7px; font-weight: 800; letter-spacing: 0.12em; }
.browser-frame > picture { display: block; }
.browser-frame > picture img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; }

.gallery-section,
.positioning-section { padding: 112px 0; }

.section-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 56px;
}

.section-heading h2,
.positioning-inner h2 {
    max-width: 720px;
    margin-top: 13px;
    font-size: clamp(36px, 4.2vw, 54px);
    line-height: 1.06;
    letter-spacing: -0.035em;
    font-weight: 650;
}

.section-heading > p,
.positioning-inner p { color: var(--muted); font-size: 16px; line-height: 1.7; }

.gallery-section { overflow: hidden; border-block: 1px solid rgba(216, 222, 233, 0.07); background: #272c36; }
.gallery-heading { align-items: center; }

.tool-walkthrough {
    display: grid;
    gap: 30px;
}

.tool-row {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
    min-height: 460px;
    overflow: hidden;
    border: 1px solid rgba(216, 222, 233, 0.15);
    border-radius: 18px;
    background: rgba(46, 52, 64, 0.48);
    box-shadow: 0 16px 38px rgba(5, 8, 13, 0.16);
}

.tool-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    background: linear-gradient(145deg, rgba(59, 66, 82, 0.7), rgba(46, 52, 64, 0.5));
}

.tool-category {
    color: var(--accent);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tool-summary h3 {
    margin-top: 10px;
    font-size: 30px;
    font-weight: 650;
    letter-spacing: -0.025em;
}

.tool-intro {
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
}

.tool-summary ul {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
}

.tool-summary li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.tool-summary li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.tool-use {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.tool-use strong { color: var(--text-soft); font-weight: 700; }

.tool-screenshot {
    overflow: hidden;
    min-width: 0;
    border-left: 1px solid var(--border-soft);
    background: #20242d;
}

.tool-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    transition: transform 300ms ease;
}
.tool-screenshot picture { display: block; width: 100%; height: 100%; }

.tool-row:hover .tool-screenshot img { transform: scale(1.01); }

.suite-strip { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 30px; margin-top: 22px; padding: 24px 28px; border: 1px solid var(--border-soft); border-radius: 13px; background: rgba(46, 52, 64, 0.58); }
.suite-strip > span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.suite-strip > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 28px; }
.suite-strip strong { color: var(--text-soft); font-size: 12px; font-weight: 650; }

.positioning-section { background: var(--bg-deep); }
.positioning-inner { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 58px; max-width: 990px; }
.positioning-mark { position: relative; width: 126px; height: 126px; display: grid; place-items: center; border: 1px solid rgba(136, 192, 208, 0.25); border-radius: 30px; background: linear-gradient(145deg, rgba(136, 192, 208, 0.12), rgba(46, 52, 64, 0.5)); box-shadow: 0 20px 60px rgba(5, 8, 13, 0.32); }
.positioning-mark::before { content: ""; position: absolute; inset: -12px; border: 1px solid rgba(136, 192, 208, 0.08); border-radius: 38px; }
.positioning-mark img { border-radius: 16px; }
.positioning-inner p { max-width: 720px; margin-top: 22px; }

.final-cta { position: relative; overflow: hidden; padding: 112px 0; text-align: center; background: linear-gradient(145deg, #323a48, #242933); }
.final-grid { position: absolute; inset: 0; opacity: 0.4; background-image: linear-gradient(rgba(136, 192, 208, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(136, 192, 208, 0.06) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle, black, transparent 72%); }
.final-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.final-inner > img { margin-bottom: 18px; border-radius: 12px; box-shadow: 0 0 40px rgba(136, 192, 208, 0.22); }
.final-inner > span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.final-inner h2 { margin: 17px 0 30px; font-size: clamp(38px, 4.7vw, 56px); line-height: 1.04; letter-spacing: -0.035em; font-weight: 620; }

.site-footer { padding: 28px 0; border-top: 1px solid rgba(216, 222, 233, 0.08); background: #1b1f27; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; gap: 24px; }
.footer-brand { gap: 8px; }
.footer-brand strong { font-size: 14px; }
.footer-inner p { color: #8993a1; font-size: 11px; line-height: 1.5; text-align: center; }
.footer-inner > span { justify-self: end; color: #8993a1; font-size: 11px; }

@media (max-width: 1040px) {
    .hero { padding-top: 150px; }
    .hero-inner { grid-template-columns: 1fr; gap: 70px; }
    .hero-copy { max-width: 760px; }
    .hero-product { width: min(850px, 94%); margin-inline: auto; }
    .hero h1 { font-size: clamp(48px, 7vw, 64px); }
    .section-heading { gap: 44px; }
    .tool-row { grid-template-columns: minmax(300px, 0.85fr) minmax(460px, 1.15fr); }
    .tool-summary { padding: 38px; }
}

@media (max-width: 820px) {
    .page-shell, .header-inner { width: min(100% - 32px, 1180px); }
    .header-inner { grid-template-columns: 1fr auto; min-height: 68px; }
    .header-nav { display: none; }
    .hero { padding: 132px 0 90px; }
    .hero-inner { gap: 56px; }
    .hero h1 { font-size: clamp(46px, 11vw, 66px); }
    .hero-lead { font-size: 16px; }
    .gallery-section, .positioning-section { padding: 84px 0; }
    .section-heading { grid-template-columns: 1fr; align-items: start; gap: 22px; margin-bottom: 42px; }
    .section-heading > p { max-width: 650px; }
    .tool-row { grid-template-columns: 1fr; min-height: 0; }
    .tool-walkthrough { gap: 24px; }
    .tool-summary { padding: 40px; }
    .tool-screenshot { aspect-ratio: 16 / 10; border-top: 1px solid var(--border-soft); border-left: 0; }
    .suite-strip { grid-template-columns: 1fr; gap: 16px; }
    .suite-strip > div { justify-content: flex-start; }
    .positioning-inner { grid-template-columns: 110px 1fr; gap: 38px; }
    .positioning-mark { width: 104px; height: 104px; }
    .positioning-mark img { width: 58px; }
    .footer-inner { grid-template-columns: 1fr auto; }
    .footer-inner p { grid-column: 1 / -1; grid-row: 2; text-align: left; }
}

@media (max-width: 600px) {
    .brand-copy small { display: none; }
    .button-small { min-height: 38px; padding-inline: 12px; }
    .button-small svg { display: none; }
    .hero { padding-top: 118px; }
    .hero h1 { font-size: clamp(41px, 12.5vw, 58px); }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
    .hero-actions .button { width: 100%; }
    .hero-product { width: 100%; transform: none; }
    .browser-bar { height: 32px; grid-template-columns: 1fr 1fr; }
    .browser-address { display: none; }
    .browser-status { font-size: 6px; }
    .gallery-section, .positioning-section { padding: 68px 0; }
    .section-heading h2, .positioning-inner h2 { font-size: 36px; }
    .tool-summary { padding: 30px 24px; }
    .tool-walkthrough { gap: 20px; }
    .tool-row { border-radius: 14px; }
    .tool-summary h3 { font-size: 27px; }
    .tool-intro { font-size: 14px; }
    .tool-screenshot { aspect-ratio: 4 / 3; }
    .suite-strip { padding: 22px; }
    .suite-strip > div { flex-direction: column; gap: 10px; }
    .positioning-inner { grid-template-columns: 1fr; gap: 34px; }
    .positioning-mark { width: 88px; height: 88px; border-radius: 22px; }
    .positioning-mark img { width: 48px; }
    .final-cta { padding: 82px 0; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-inner > span { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
