/* ============================================================================
   OpgavePlan.dk — marketing site
   Design tokens mirror the product UI (Figtree + OKLCH palette) so the site
   feels like a natural extension of the app.
   ========================================================================== */

:root {
    /* Brand palette — taken from the product's :root tokens */
    --accent:       oklch(0.52 0.22 255);
    --accent-600:   oklch(0.46 0.22 255);
    --accent-700:   oklch(0.40 0.19 258);
    --accent-lt:    oklch(0.95 0.05 255);
    --accent2:      oklch(0.56 0.15 168);   /* teal / success */
    --accent2-600:  oklch(0.50 0.15 168);
    --accent2-lt:   oklch(0.95 0.06 168);
    --warn:         oklch(0.66 0.15 75);
    --warn-lt:      oklch(0.96 0.06 75);
    --danger:       oklch(0.56 0.20 25);
    --danger-lt:    oklch(0.95 0.06 25);

    /* Neutrals (cool, hue 260) */
    --ink:          oklch(0.20 0.018 260);
    --ink-2:        oklch(0.34 0.018 260);
    --muted:        oklch(0.52 0.016 260);
    --bg:           oklch(0.985 0.004 260);
    --bg-2:         oklch(0.965 0.008 260);
    --surface:      #ffffff;
    --border:       oklch(0.90 0.012 260);
    --border-soft:  oklch(0.93 0.010 260);

    /* Dark surface (used in dark sections / footer) */
    --dark:         oklch(0.21 0.03 262);
    --dark-2:       oklch(0.26 0.035 262);
    --dark-border:  oklch(1 0 0 / 0.10);
    --dark-muted:   oklch(0.78 0.02 262);

    --radius:       16px;
    --radius-sm:    10px;
    --radius-lg:    24px;
    --shadow-sm:    0 1px 3px oklch(0.2 0.02 260 / 0.06), 0 1px 2px oklch(0.2 0.02 260 / 0.04);
    --shadow:       0 10px 30px -12px oklch(0.25 0.04 262 / 0.18);
    --shadow-lg:    0 30px 60px -20px oklch(0.25 0.06 262 / 0.30);
    --shadow-accent:0 20px 50px -16px oklch(0.52 0.22 255 / 0.45);

    --maxw:         1180px;
    --ease:         cubic-bezier(0.22, 1, 0.36, 1);

    color-scheme: light;
}

/* ----------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
    font-family: 'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
    max-width: 100%;
    position: relative;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent-lt); color: var(--accent-700); }

/* --------------------------------------------------------------- layout -- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
    color: var(--accent-600); text-transform: uppercase;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: ''; width: 22px; height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.eyebrow.center::before { display: none; }

h1, h2, h3 { line-height: 1.1; letter-spacing: -0.03em; font-weight: 700; color: var(--ink); }
.h1 { font-size: clamp(2rem, 6.8vw, 4rem); font-weight: 800; letter-spacing: -0.04em; overflow-wrap: break-word; }
.h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--muted); line-height: 1.65; }
.text-grad {
    background: linear-gradient(105deg, var(--accent) 10%, var(--accent2) 90%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --------------------------------------------------------------- buttons -- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
    font-size: 15px; font-weight: 600; white-space: nowrap;
    transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-600) 100%);
    color: #fff; box-shadow: var(--shadow-accent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 56px -16px oklch(0.52 0.22 255 / 0.55); }
.btn-ghost {
    background: var(--surface); color: var(--ink); border-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: oklch(0.82 0.04 260); box-shadow: var(--shadow); }
.btn-lg { padding: 16px 30px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-light { background: #fff; color: var(--accent-700); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px oklch(0 0 0 / 0.4); }
.btn-outline-light { background: oklch(1 0 0 / 0.06); color: #fff; border-color: oklch(1 0 0 / 0.25); }
.btn-outline-light:hover { background: oklch(1 0 0 / 0.14); transform: translateY(-2px); }

/* ------------------------------------------------------------------- nav -- */
.nav {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    transition: background 0.3s, box-shadow 0.3s, border-color 0.3s, backdrop-filter 0.3s;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: oklch(0.99 0.004 260 / 0.78);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom-color: var(--border-soft);
    box-shadow: 0 1px 0 oklch(0.2 0.02 260 / 0.03);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -0.04em; color: var(--ink); }
.brand .logo { width: 34px; height: 34px; flex: none; border-radius: 10px; box-shadow: var(--shadow-accent); }
.brand b { color: var(--accent-600); font-weight: 800; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
    padding: 9px 14px; border-radius: 10px; font-size: 14.5px; font-weight: 500; color: var(--ink-2);
    transition: background 0.18s, color 0.18s;
}
.nav-links a:hover { background: var(--bg-2); color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-login { font-size: 14.5px; font-weight: 600; color: var(--ink-2); padding: 9px 12px; border-radius: 10px; }
.nav-login:hover { color: var(--accent-600); }

.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 11px; background: var(--surface); align-items: center; justify-content: center; }
.menu-btn svg { width: 22px; height: 22px; stroke: var(--ink); }

.mobile-menu {
    position: fixed; inset: 72px 0 auto 0; z-index: 99;
    background: oklch(0.99 0.004 260 / 0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px; display: none; flex-direction: column; gap: 4px;
    transform: translateY(-12px); opacity: 0; transition: opacity 0.22s, transform 0.22s;
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu a { padding: 13px 14px; border-radius: 11px; font-weight: 600; font-size: 16px; color: var(--ink); }
.mobile-menu a:hover { background: var(--bg-2); }
.mobile-menu .btn { margin-top: 10px; }

/* ------------------------------------------------------------------ hero -- */
.hero { position: relative; padding: 150px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg::before {
    /* faint grid */
    content: ''; position: absolute; inset: -2px;
    background-image:
        linear-gradient(oklch(0.55 0.02 260 / 0.05) 1px, transparent 1px),
        linear-gradient(90deg, oklch(0.55 0.02 260 / 0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(ellipse 90% 60% at 50% 30%, #000 35%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 30%, #000 35%, transparent 75%);
}
/* Blobs are anchored so their layout box never crosses the right edge at any
   phone width (right:0 / left-anchored), so the hero needs no overflow clip to
   stay within the viewport. float1 only translates left/down, float2 sits far
   left — neither pushes a box past the right edge. */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; }
.blob-1 { width: 440px; height: 440px; top: -150px; right: 0; background: oklch(0.72 0.17 255 / 0.55); animation: float1 18s ease-in-out infinite; }
.blob-2 { width: 460px; height: 460px; top: 40px; left: -180px; background: oklch(0.78 0.13 200 / 0.5); animation: float2 22s ease-in-out infinite; }
.blob-3 { width: 280px; height: 280px; bottom: -150px; left: 12%; background: oklch(0.80 0.13 168 / 0.45); animation: float1 26s ease-in-out infinite reverse; }
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 40px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, -30px); } }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 7px 8px 7px 7px; border-radius: 100px;
    background: var(--surface); border: 1px solid var(--border);
    font-size: 13px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm);
    margin-bottom: 26px;
}
.hero-badge .tag { background: var(--accent-lt); color: var(--accent-700); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px; letter-spacing: 0.02em; }

.hero h1 { margin-bottom: 22px; }
.hero .lead { max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.hero-trust .stars { color: var(--warn); letter-spacing: 2px; font-size: 15px; }
.hero-trust small { color: var(--muted); font-size: 13.5px; }
.hero-trust .sep { width: 1px; height: 26px; background: var(--border); }

/* product window mockup */
.window {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden;
    transform: perspective(2200px) rotateY(-9deg) rotateX(3deg) translateZ(0);
    transition: transform 0.6s var(--ease);
}
.hero-art { position: relative; }
.hero-art:hover .window { transform: perspective(2200px) rotateY(-3deg) rotateX(1deg); }
.win-bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-bottom: 1px solid var(--border-soft); background: var(--bg); }
.dots { display: flex; gap: 7px; }
.dots i { width: 11px; height: 11px; border-radius: 50%; background: oklch(0.86 0.02 260); }
.dots i:nth-child(1){ background:#ff5f57;} .dots i:nth-child(2){ background:#febc2e;} .dots i:nth-child(3){ background:#28c840;}
.win-url { flex: 1; text-align: center; font-size: 12px; color: var(--muted); background: var(--surface); border: 1px solid var(--border-soft); border-radius: 8px; padding: 5px 10px; max-width: 260px; margin-inline: auto; }

.app { display: grid; grid-template-columns: 168px 1fr; min-height: 430px; }
.app-side { background: var(--bg); border-right: 1px solid var(--border-soft); padding: 16px 12px; }
.side-brand { font-weight: 800; font-size: 14px; letter-spacing: -0.03em; padding: 4px 8px 14px; }
.side-brand b { color: var(--accent-600); }
.side-item { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 9px; font-size: 12.5px; font-weight: 500; color: var(--muted); margin-bottom: 2px; }
.side-item .ic { width: 15px; height: 15px; border-radius: 5px; background: oklch(0.88 0.02 260); flex: none; }
.side-item.active { background: var(--accent-lt); color: var(--accent-700); font-weight: 600; }
.side-item.active .ic { background: var(--accent); }

.app-main { padding: 18px 20px; background: var(--bg-2); }
.app-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.app-top .wk { font-size: 15px; font-weight: 300; color: var(--ink); }
.app-top .wk b { font-weight: 700; }
.app-top .navs { display: flex; gap: 5px; }
.app-top .navs span { width: 24px; height: 24px; border: 1px solid var(--border); border-radius: 6px; background: #fff; display: grid; place-items: center; color: var(--muted); font-size: 12px; }

.score {
    background: linear-gradient(135deg, var(--accent2-lt) 0%, oklch(0.96 0.04 200) 100%);
    border: 1px solid oklch(0.56 0.15 168 / 0.28);
    border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; gap: 16px; margin-bottom: 14px;
}
.score .emoji { font-size: 30px; }
.score .t { font-size: 14px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.score .s { font-size: 11.5px; color: var(--ink-2); }
.score .big { margin-left: auto; text-align: right; }
.score .big b { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--accent2-600); display: block; line-height: 1; }
.score .big small { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

.rings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi-card { background: #fff; border: 1px solid var(--border-soft); border-radius: 12px; padding: 12px; display: flex; flex-direction: column; align-items: center; gap: 8px; box-shadow: var(--shadow-sm); }
.ring { --val: 70; --col: var(--accent); width: 64px; height: 64px; border-radius: 50%;
    background: conic-gradient(var(--col) calc(var(--val) * 1%), oklch(0.92 0.01 260) 0);
    display: grid; place-items: center; position: relative; }
.ring::after { content: ''; position: absolute; inset: 8px; background: #fff; border-radius: 50%; }
.ring b { position: relative; z-index: 1; font-size: 14px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.kpi-card small { font-size: 10.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; text-align: center; }

.floaty { position: absolute; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); padding: 12px 14px; display: flex; align-items: center; gap: 11px; }
.floaty .ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.floaty .t { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.floaty .s { font-size: 11px; color: var(--muted); }
.floaty-1 { top: -22px; left: -26px; animation: bob 6s ease-in-out infinite; }
.floaty-1 .ic { background: var(--accent2-lt); color: var(--accent2-600); }
.floaty-2 { bottom: -24px; right: -22px; animation: bob 6s ease-in-out infinite 1.5s; }
.floaty-2 .ic { background: var(--accent-lt); color: var(--accent-600); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ------------------------------------------------------------ trust bar -- */
.trust { padding: 28px 0 8px; }
.trust p { text-align: center; font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; margin-bottom: 22px; }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; }
.trust-chip { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15px; color: var(--ink-2); opacity: 0.85; }
.trust-chip .d { width: 9px; height: 9px; border-radius: 50%; }

/* ------------------------------------------------------------- stat band -- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.stat span { font-size: 14px; color: var(--muted); margin-top: 8px; display: block; }

/* --------------------------------------------------------------- values -- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value .v-ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; }
.value .v-ic svg { width: 26px; height: 26px; }
.value h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value p { color: var(--muted); font-size: 15px; }
.ic-blue { background: var(--accent-lt); color: var(--accent-600); }
.ic-teal { background: var(--accent2-lt); color: var(--accent2-600); }
.ic-amber{ background: var(--warn-lt); color: oklch(0.52 0.14 70); }

/* -------------------------------------------------------------- features -- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 24px; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; position: relative; overflow: hidden; }
.feature::after { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent2)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border); }
.feature:hover::after { transform: scaleX(1); }
.feature .f-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-lt); color: var(--accent-600); display: grid; place-items: center; margin-bottom: 16px; }
.feature .f-ic svg { width: 23px; height: 23px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* --------------------------------------------------------------- splits -- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split + .split { margin-top: clamp(70px, 9vw, 120px); }
.split.reverse .split-copy { order: 2; }
.split-copy h2 { margin-bottom: 18px; }
.split-copy .lead { margin-bottom: 26px; }
.checklist { display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; list-style: none; font-size: 15.5px; color: var(--ink-2); }
.checklist .ck { width: 24px; height: 24px; border-radius: 8px; background: var(--accent2-lt); color: var(--accent2-600); display: grid; place-items: center; flex: none; margin-top: 1px; }
.checklist .ck svg { width: 15px; height: 15px; }
.checklist b { color: var(--ink); font-weight: 700; }

.media-frame {
    background: linear-gradient(150deg, var(--accent-lt), oklch(0.96 0.04 200) 60%, var(--accent2-lt));
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 30px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.media-frame.dark { background: linear-gradient(150deg, var(--dark), var(--dark-2)); border-color: var(--dark-border); }

/* mini calendar mock */
.cal { background: #fff; border: 1px solid var(--border-soft); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.cal-head { display: grid; grid-template-columns: 64px repeat(5, 1fr); background: var(--bg); border-bottom: 1px solid var(--border-soft); }
.cal-head div { padding: 9px 8px; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; text-align: center; }
.cal-head div:first-child { text-align: left; }
.cal-row { display: grid; grid-template-columns: 64px repeat(5, 1fr); border-bottom: 1px solid var(--border-soft); min-height: 56px; }
.cal-row:last-child { border-bottom: 0; }
.cal-row .who { padding: 10px 8px; font-size: 12px; font-weight: 600; color: var(--ink-2); display: flex; align-items: center; gap: 7px; border-right: 1px solid var(--border-soft); background: var(--bg); }
.cal-row .who i { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.cal-cell { border-right: 1px solid var(--border-soft); padding: 6px; }
.ev { border-radius: 8px; padding: 6px 8px; font-size: 10.5px; font-weight: 600; color: #fff; line-height: 1.25; height: 100%; box-shadow: var(--shadow-sm); }
.ev small { display: block; font-weight: 500; opacity: 0.9; font-size: 9.5px; }

/* phone mock for worker app */
.phone-wrap { display: grid; place-items: center; }
.phone { width: 260px; background: var(--dark); border-radius: 38px; padding: 11px; box-shadow: var(--shadow-lg); border: 1px solid var(--dark-border); }
.phone-screen { background: var(--bg); border-radius: 28px; overflow: hidden; }
.ph-top { background: #fff; padding: 16px 16px 12px; border-bottom: 1px solid var(--border-soft); }
.ph-top .h { font-size: 16px; font-weight: 800; letter-spacing: -0.03em; }
.ph-top .d { font-size: 12px; color: var(--muted); }
.ph-body { padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.ph-task { background: #fff; border: 1px solid var(--border-soft); border-radius: 13px; padding: 12px; box-shadow: var(--shadow-sm); }
.ph-task .row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ph-task .ttl { font-size: 13px; font-weight: 700; color: var(--ink); }
.ph-task .addr { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.pill { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 100px; font-size: 10.5px; font-weight: 600; }
.pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill-prog { background: var(--warn-lt); color: oklch(0.50 0.14 60); }
.pill-plan { background: var(--accent-lt); color: var(--accent-600); }
.pill-done { background: var(--accent2-lt); color: var(--accent2-600); }
.ph-timer { background: linear-gradient(135deg, var(--accent), var(--accent-600)); color: #fff; border-radius: 13px; padding: 14px; text-align: center; box-shadow: var(--shadow-accent); }
.ph-timer .t { font-size: 26px; font-weight: 800; letter-spacing: 0.02em; font-variant-numeric: tabular-nums; }
.ph-timer .s { font-size: 11px; opacity: 0.85; }
.ph-actions { display: flex; gap: 8px; margin-top: 10px; }
.ph-actions span { flex: 1; background: oklch(1 0 0 / 0.18); border-radius: 9px; padding: 7px; font-size: 11px; font-weight: 600; }

/* ---------------------------------------------------------- integrations -- */
.integrations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.integ { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.integ:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.integ-logo { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; font-weight: 800; font-size: 22px; color: #fff; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.integ h3 { font-size: 1.15rem; margin-bottom: 8px; }
.integ p { color: var(--muted); font-size: 14.5px; }
.integ .badge { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 700; color: var(--accent2-600); background: var(--accent2-lt); padding: 4px 11px; border-radius: 100px; }

/* ---------------------------------------------------------------- steps -- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; position: relative; }
.step { position: relative; padding: 28px; background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-num { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(180deg, var(--accent), var(--accent-600)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 20px; margin-bottom: 18px; box-shadow: var(--shadow-accent); }
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; }

/* -------------------------------------------------------------- pricing -- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s; position: relative; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.featured { border: 2px solid var(--accent); box-shadow: var(--shadow-accent); transform: scale(1.03); background: linear-gradient(180deg, #fff, var(--accent-lt) 240%); }
.plan.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, var(--accent), var(--accent2)); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 100px; box-shadow: var(--shadow-sm); white-space: nowrap; }
.plan h3 { font-size: 1.3rem; margin-bottom: 4px; }
.plan .plan-desc { font-size: 13.5px; color: var(--muted); min-height: 40px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin: 18px 0 4px; }
.plan-price b { font-size: 2.7rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.plan-price span { font-size: 14px; color: var(--muted); font-weight: 500; }
.plan .vat { font-size: 12px; color: var(--muted); margin-bottom: 22px; }
.plan .btn { width: 100%; margin-bottom: 24px; }
.plan-feats { display: flex; flex-direction: column; gap: 12px; }
.plan-feats li { display: flex; gap: 10px; align-items: flex-start; list-style: none; font-size: 14.5px; color: var(--ink-2); }
.plan-feats .ck { width: 20px; height: 20px; border-radius: 6px; background: var(--accent2-lt); color: var(--accent2-600); display: grid; place-items: center; flex: none; margin-top: 1px; }
.plan-feats .ck svg { width: 13px; height: 13px; }
.plan-feats li.muted { color: var(--muted); }
.plan-feats li.muted .ck { background: var(--bg-2); color: oklch(0.7 0.01 260); }
.pricing-note { text-align: center; margin-top: 30px; color: var(--muted); font-size: 14px; }

/* ----------------------------------------------------------- testimonial -- */
.quote-wrap { max-width: 860px; margin-inline: auto; text-align: center; }
.quote-mark { font-size: 80px; line-height: 0.5; color: var(--accent); opacity: 0.18; font-family: Georgia, serif; height: 40px; }
.quote-text { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 600; letter-spacing: -0.02em; color: var(--ink); line-height: 1.4; }
.quote-by { display: flex; align-items: center; justify-content: center; gap: 13px; margin-top: 28px; }
.quote-av { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 18px; }
.quote-by .n { font-weight: 700; color: var(--ink); }
.quote-by .r { font-size: 13.5px; color: var(--muted); }

/* ------------------------------------------------------------------ faq -- */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border: 1px solid var(--border-soft); border-radius: 14px; background: var(--surface); margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.25s, border-color 0.25s; }
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--border); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 700; font-size: 16.5px; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev { width: 28px; height: 28px; border-radius: 8px; background: var(--bg-2); display: grid; place-items: center; flex: none; transition: transform 0.3s, background 0.2s; }
.faq-item .chev svg { width: 16px; height: 16px; stroke: var(--ink-2); }
.faq-item[open] .chev { transform: rotate(180deg); background: var(--accent-lt); }
.faq-item[open] .chev svg { stroke: var(--accent-600); }
.faq-body { padding: 0 24px 22px; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ---------------------------------------------------------------- cta/dark */
.cta { position: relative; overflow: hidden; }
.cta-card {
    background: linear-gradient(140deg, var(--dark) 0%, oklch(0.30 0.08 262) 55%, var(--accent-700) 140%);
    border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 76px);
    position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-card::before { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: oklch(0.7 0.18 255 / 0.4); filter: blur(80px); top: -160px; right: -100px; }
.cta-card::after { content: ''; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: oklch(0.75 0.14 168 / 0.35); filter: blur(80px); bottom: -180px; left: -80px; }
.cta-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.cta-card h2 { color: #fff; margin-bottom: 16px; }
.cta-card .lead { color: var(--dark-muted); margin-bottom: 28px; }
.cta-points { display: flex; flex-direction: column; gap: 12px; }
.cta-points li { list-style: none; display: flex; gap: 11px; align-items: center; color: oklch(0.95 0.01 262); font-size: 15.5px; font-weight: 500; }
.cta-points .ck { width: 22px; height: 22px; border-radius: 7px; background: oklch(1 0 0 / 0.14); color: #fff; display: grid; place-items: center; flex: none; }
.cta-points .ck svg { width: 14px; height: 14px; }

/* ----------------------------------------------------------------- form -- */
.form-card { background: var(--surface); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.form-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.form-card .sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 11px;
    font-size: 15px; font-family: inherit; color: var(--ink); background: var(--bg);
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px oklch(0.52 0.22 255 / 0.12); }
.field textarea { resize: vertical; min-height: 92px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-ok { display: none; text-align: center; padding: 30px 10px; }
.form-ok.show { display: block; }
.form-ok .big { width: 64px; height: 64px; border-radius: 50%; background: var(--accent2-lt); color: var(--accent2-600); display: grid; place-items: center; margin: 0 auto 16px; }
.form-ok .big svg { width: 32px; height: 32px; }

/* ---------------------------------------------------------------- footer -- */
.footer { background: var(--dark); color: var(--dark-muted); padding: 72px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--dark-border); }
.foot-brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -0.04em; color: #fff; margin-bottom: 16px; }
.foot-brand .logo { width: 34px; height: 34px; border-radius: 10px; }
.footer p { font-size: 14px; max-width: 300px; line-height: 1.6; }
.foot-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; font-weight: 700; }
.foot-col a { display: block; font-size: 14.5px; padding: 6px 0; color: var(--dark-muted); transition: color 0.18s; }
.foot-col a:hover { color: #fff; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 26px; font-size: 13.5px; }
.foot-bottom .made { color: var(--dark-muted); }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 38px; height: 38px; border-radius: 10px; background: oklch(1 0 0 / 0.07); display: grid; place-items: center; transition: background 0.2s, transform 0.2s; }
.foot-social a:hover { background: oklch(1 0 0 / 0.16); transform: translateY(-2px); }
.foot-social svg { width: 18px; height: 18px; fill: #fff; }

/* --------------------------------------------------------- scroll reveal -- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; } .reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

/* -------------------------------------------------------------- responsive */
@media (max-width: 1000px) {
    .nav-links { display: none; }
    .menu-btn { display: inline-flex; }
    .nav-actions .nav-login { display: none; }
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-inner > *, .split > *, .cta-grid > * { min-width: 0; }
    .hero-art { max-width: 540px; margin-inline: auto; }
    .split, .cta-grid { grid-template-columns: 1fr; gap: 40px; }
    .split.reverse .split-copy { order: 0; }
    .values, .features-grid, .integrations, .steps, .pricing, .stats { grid-template-columns: 1fr 1fr; }
    .plan.featured { transform: none; } .plan.featured:hover { transform: translateY(-4px); }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
    .container { padding-inline: 18px; }
    .hero { padding-top: 122px; }
    .hero-copy, .split-copy { min-width: 0; }
    .nav-actions .btn-primary { padding: 11px 16px; font-size: 14px; }
    .h2 { overflow-wrap: break-word; }
    .values, .features-grid, .integrations, .steps, .pricing, .stats, .field-row, .foot-grid { grid-template-columns: 1fr; }
    .window { transform: none; }
    .hero-art:hover .window { transform: none; }
    /* simplify the product mockup so it fits a phone without clipping */
    .app { grid-template-columns: 1fr; }
    .app-side { display: none; }
    .app-main { padding: 14px; }
    .ring { width: 56px; height: 56px; }
    .ring b { font-size: 13px; }
    .kpi-card { padding: 10px; }
    .floaty-1 { left: -6px; top: -14px; } .floaty-2 { right: -6px; bottom: -16px; }
    .floaty { padding: 10px 12px; }
    .stat b { font-size: 2.2rem; }
    /* mini calendar: drop one day column so labels stay legible */
    .cal-head, .cal-row { grid-template-columns: 52px repeat(4, 1fr); }
    .cal-head div:nth-child(6), .cal-row .cal-cell:nth-child(6) { display: none; }
    .cta-card { padding: 32px 22px; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
}
