/* ---------------------------------------------------------------------------
   Worksy - self-hosted fonts.

   The design's three families, served from our own origin instead of
   fonts.googleapis.com. Variable fonts, so one file covers every weight, and
   each is subset to the characters a Turkish or English page actually uses.
   Google's own unicode-range split is kept, so the browser still fetches only
   the file a given page needs.

   Inter and Inter Tight: SIL Open Font License 1.1 (Rasmus Andersson).
   JetBrains Mono: SIL Open Font License 1.1 (JetBrains).
   --------------------------------------------------------------------------- */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/inter-tight-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/inter-tight-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: 'JetBrains Mono';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* ---------------------------------------------------------------------------
   Worksy — public site.

   Values taken from "Worksy Landing.dc.html". The design is drawn at a fixed
   1200px and carries its styling inline; here it is the same design expressed
   as classes, plus the responsive behaviour a fixed-width canvas cannot
   describe. Colours, radii, type sizes and spacing are the design's own.

   Breakpoints: 1080px (three-up grids become two-up, side-by-side blocks
   stack), 860px (nav collapses to a sheet, grids go one-up), 560px (type steps
   down, buttons go full width).
   --------------------------------------------------------------------------- */

:root {
    --w-bg:      #05140D;
    --w-panel:   #071B12;
    --w-card:    #0A2317;
    --w-card-hi: #0C2B1B;
    --w-card-2:  #0D2E1C;

    --w-accent:    #C7F470;
    --w-accent-hi: #DBFF95;
    --w-accent-lk: #E2FFA8;

    --w-fg:    #E9F2EA;
    --w-fg-2:  #D6E4D8;
    --w-fg-3:  #C9DACC;
    --w-fg-4:  #C6D8C9;
    --w-mut:   #A8BEAD;
    --w-dim:   #8FA894;
    --w-dim-2: #7E9A86;
    --w-dim-3: #708C78;   /* design #6F8B77, lifted: 4.45 -> 4.53 on the card */
    --w-dim-4: #698772;   /* design #5F7A67, lifted: 3.80 -> 4.51 on the panel */
    --w-dim-5: #3F5C48;

    --w-line:   rgba(255, 255, 255, .07);
    --w-line-2: rgba(255, 255, 255, .08);
    --w-line-3: rgba(255, 255, 255, .14);
    --w-lime-l: rgba(199, 244, 112, .10);

    --w-sans:    Inter, Helvetica, sans-serif;
    --w-display: 'Inter Tight', sans-serif;
    --w-mono:    'JetBrains Mono', monospace;

    --w-gut: 40px;
    --w-max: 1240px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--w-bg); scroll-behavior: smooth; }
body {
    color: var(--w-fg);
    font-family: var(--w-sans);
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--w-accent); text-decoration: none; }
a:hover { color: var(--w-accent-lk); }
::selection { background: var(--w-accent); color: var(--w-bg); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: rgba(199, 244, 112, .18); border-radius: 99px; border: 3px solid var(--w-bg); }
::-webkit-scrollbar-track { background: var(--w-bg); }
input, button { font-family: inherit; }
img { max-width: 100%; display: block; }

@keyframes wpulse   { 0%, 100% { opacity: .35; transform: scale(1); } 50% { opacity: 1; transform: scale(1.4); } }
@keyframes wmarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

a:focus-visible, button:focus-visible, summary:focus-visible, label:focus-visible {
    outline: 2px solid var(--w-accent); outline-offset: 3px; border-radius: 8px;
}
.w-skip { position: absolute; left: -9999px; top: 0; z-index: 100;
          background: var(--w-accent); color: var(--w-bg); padding: 10px 16px;
          border-radius: 0 0 10px 0; font-weight: 600; }
.w-skip:focus { left: 0; }

/* ------------------------------------------------------------------ layout */
.w-in  { max-width: var(--w-max); margin: 0 auto; }
.w-sec { padding: 92px var(--w-gut); border-bottom: 1px solid var(--w-lime-l); }
.w-sec-plain { padding: 92px var(--w-gut); }
.w-sec-alt   { background: var(--w-panel); }

.w-kick { font-family: var(--w-mono); font-size: 10px; letter-spacing: .18em; color: var(--w-accent); text-transform: uppercase; }
.w-h2   { font-family: var(--w-display); font-size: 44px; font-weight: 600; letter-spacing: -.04em; margin: 16px 0 0; text-wrap: balance; }
.w-sub  { font-size: 14px; color: var(--w-dim); line-height: 1.6; text-wrap: pretty; }

.w-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }

/* ------------------------------------------------------------------ header */
.w-hd {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; gap: 28px;
    height: 68px; padding: 0 var(--w-gut);
    background: rgba(5, 20, 13, .86);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--w-lime-l);
}
.w-logo-link { display: flex; align-items: center; gap: 12px; color: inherit; flex-shrink: 0; }
.w-logo-link:hover { color: inherit; }
.w-logo-img  { height: 32px; width: auto; max-width: 170px; object-fit: contain; }
.w-mk { width: 34px; height: 34px; border-radius: 10px; background: var(--w-accent);
        display: flex; align-items: center; justify-content: center; gap: 3px; flex-shrink: 0; }
.w-mk i { display: block; width: 3.5px; background: var(--w-bg); border-radius: 1px; transform: skewX(-18deg); }
.w-mk-sm { width: 30px; height: 30px; border-radius: 9px; gap: 2.5px; }
.w-mk-sm i { width: 3px; }
.w-wordmark { font-family: var(--w-display); font-size: 16px; font-weight: 600; letter-spacing: -.02em; }

.w-nav { display: flex; align-items: center; gap: 4px; margin-left: 12px; }
.w-nav a { padding: 8px 12px; border-radius: 9px; font-size: 13.5px; font-weight: 500; color: var(--w-fg-4); white-space: nowrap; }
.w-nav a:hover { background: rgba(255, 255, 255, .05); color: var(--w-fg); }
.w-spring { flex: 1; }
/* The nav's own buttons belong to the collapsed menu, where the header's
   pair is hidden. Showing both is the same CTA twice. */
.w-nav .w-b { display: none; }

.w-uptime {
    display: flex; align-items: center; gap: 8px; height: 32px; padding: 0 12px; flex-shrink: 0;
    border-radius: 99px; border: 1px solid rgba(199, 244, 112, .22); background: rgba(199, 244, 112, .08);
}
.w-uptime i { width: 6px; height: 6px; border-radius: 99px; background: var(--w-accent); animation: wpulse 1.8s infinite; display: block; }
.w-uptime span { font-family: var(--w-mono); font-size: 10px; letter-spacing: .1em; color: var(--w-accent); white-space: nowrap; }

/* ----------------------------------------------------------------- buttons */
.w-b {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 38px; padding: 0 15px; border-radius: 11px;
    border: 1px solid var(--w-line-3); color: var(--w-fg-2);
    font-size: 13px; font-weight: 500; white-space: nowrap; flex-shrink: 0;
    transition: border-color .15s, background .15s, color .15s;
}
.w-b:hover { border-color: rgba(199, 244, 112, .5); color: var(--w-fg); }
.w-b-pri { background: var(--w-accent); border-color: var(--w-accent); color: var(--w-bg); font-weight: 600; padding: 0 17px; }
.w-b-pri:hover { background: var(--w-accent-hi); border-color: var(--w-accent-hi); color: var(--w-bg); }
.w-b-lg { height: 50px; padding: 0 22px; border-radius: 13px; font-size: 14.5px; gap: 10px; }
.w-b-pri.w-b-lg { padding: 0 24px; }
.w-b-lime { border-color: rgba(199, 244, 112, .35); color: var(--w-accent);
            height: 44px; padding: 0 18px; border-radius: 12px; font-size: 13.5px; font-weight: 600; gap: 9px; }
.w-b-lime:hover { background: var(--w-lime-l); color: var(--w-accent-lk); border-color: rgba(199, 244, 112, .35); }

/* The burger is a checkbox, so the menu opens without JavaScript. */
.w-burger { display: none; }
.w-burger-btn { display: none; width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
                border: 1px solid var(--w-line-3); background: rgba(255, 255, 255, .04);
                cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.w-burger-btn span { display: block; width: 16px; height: 2px; background: var(--w-fg); border-radius: 2px; }

/* -------------------------------------------------------------------- hero */
.w-hero { position: relative; overflow: hidden; padding: 84px var(--w-gut) 0; border-bottom: 1px solid var(--w-lime-l); }
.w-hero-stripes { position: absolute; inset: 0; pointer-events: none;
    background: repeating-linear-gradient(118deg, rgba(199, 244, 112, .04) 0, rgba(199, 244, 112, .04) 26px, transparent 26px, transparent 78px); }
.w-hero-glow { position: absolute; right: -180px; top: -120px; width: 720px; height: 720px; border-radius: 999px;
    background: radial-gradient(circle, rgba(199, 244, 112, .14), transparent 66%); pointer-events: none; }
.w-hero-grid { position: relative; max-width: var(--w-max); margin: 0 auto;
    display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); gap: 56px; align-items: center; }

.w-badge { display: inline-flex; align-items: center; gap: 10px; height: 30px; padding: 0 12px;
    border-radius: 99px; background: var(--w-lime-l); border: 1px solid rgba(199, 244, 112, .24); }
.w-badge b { font-family: var(--w-mono); font-size: 9.5px; letter-spacing: .16em; color: var(--w-accent); font-weight: 400; }
.w-badge span { font-size: 11.5px; color: var(--w-mut); }

.w-h1 { font-family: var(--w-display); font-size: 74px; font-weight: 600; letter-spacing: -.05em;
    line-height: .98; margin: 24px 0 0; text-wrap: balance; }
.w-h1 em { color: var(--w-accent); font-style: normal; }
.w-lede { font-size: 16.5px; color: var(--w-mut); line-height: 1.6; margin: 22px 0 0; max-width: 520px; text-wrap: pretty; }

.w-cta-row { display: flex; align-items: center; gap: 10px; margin-top: 32px; flex-wrap: wrap; }
.w-cta-note { font-family: var(--w-mono); font-size: 11px; color: var(--w-dim-2); margin-left: 6px; }

.w-stat3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 48px;
    max-width: 560px; background: var(--w-line-2); border: 1px solid var(--w-line-2); border-radius: 16px; overflow: hidden; }
.w-stat3 > div { background: var(--w-card); padding: 18px 20px; }
.w-stat-v { font-family: var(--w-display); font-size: 27px; font-weight: 600; letter-spacing: -.035em; }
.w-stat-k { font-family: var(--w-mono); font-size: 9.5px; letter-spacing: .12em; color: var(--w-dim-2); text-transform: uppercase; margin-top: 6px; }

/* the panel mock-up beside the headline */
.w-mock-wrap { position: relative; }
.w-mock-wrap::before { content: ''; position: absolute; inset: 18px -14px -18px 14px; border-radius: 22px;
    background: rgba(199, 244, 112, .07); border: 1px solid rgba(199, 244, 112, .14); }
.w-mock { position: relative; border-radius: 20px; background: var(--w-card);
    border: 1px solid rgba(199, 244, 112, .18); overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7); }
.w-mock-bar { display: flex; align-items: center; gap: 10px; padding: 13px 16px;
    border-bottom: 1px solid var(--w-line); background: rgba(255, 255, 255, .025); }
.w-mock-dots { display: flex; gap: 5px; flex-shrink: 0; }
.w-mock-dots i { width: 8px; height: 8px; border-radius: 99px; background: rgba(255, 255, 255, .16); display: block; }
.w-mock-dots i:last-child { background: var(--w-accent); }
.w-mock-url { font-family: var(--w-mono); font-size: 10.5px; color: var(--w-dim-2);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.w-mock-body { padding: 18px; }
.w-mock-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.w-mock-lbl { font-family: var(--w-mono); font-size: 9.5px; letter-spacing: .14em; color: var(--w-dim-2); text-transform: uppercase; }
.w-mock-bal { font-family: var(--w-display); font-size: 34px; font-weight: 600; letter-spacing: -.035em; margin-top: 8px; line-height: 1; }
.w-spark { display: flex; align-items: flex-end; gap: 3px; height: 44px; flex-shrink: 0; }
.w-spark i { width: 6px; border-radius: 2px; display: block; }
.w-mock-rule { height: 1px; background: var(--w-line); margin: 16px 0; }
.w-mock-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; }
.w-mock-mono { width: 30px; height: 30px; border-radius: 8px; background: rgba(199, 244, 112, .12); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--w-mono); font-size: 10px; font-weight: 700; color: var(--w-accent); }
.w-mock-name { font-size: 13px; font-weight: 500; }
.w-mock-ip { font-family: var(--w-mono); font-size: 10.5px; color: var(--w-dim-2); margin-top: 2px; }
.w-mock-chip { font-family: var(--w-mono); font-size: 10.5px; padding: 4px 9px; border-radius: 99px; white-space: nowrap; }

.w-marquee { position: relative; margin-top: 72px; padding: 18px 0; border-top: 1px solid var(--w-line); overflow: hidden; }
.w-marquee > div { display: flex; width: max-content; gap: 56px; animation: wmarquee 34s linear infinite; }
.w-marquee span { font-family: var(--w-mono); font-size: 12px; letter-spacing: .14em; color: var(--w-dim-5); text-transform: uppercase; white-space: nowrap; }

/* --------------------------------------------------------------------- how */
.w-grid3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 44px; }
.w-step { position: relative; padding: 26px; border-radius: 18px; background: var(--w-card);
    border: 1px solid var(--w-line); overflow: hidden; transition: border-color .15s; }
.w-step:hover { border-color: rgba(199, 244, 112, .35); }
.w-step-ghost::before { content: attr(data-n); }
.w-step-ghost { position: absolute; right: 18px; top: 10px; font-family: var(--w-display);
    font-size: 74px; font-weight: 600; color: rgba(199, 244, 112, .07); letter-spacing: -.05em; }
.w-step-n { position: relative; font-family: var(--w-mono); font-size: 9.5px; letter-spacing: .16em; color: var(--w-accent); }
.w-step-t { position: relative; font-family: var(--w-display); font-size: 21px; font-weight: 600; letter-spacing: -.025em; margin-top: 40px; }
.w-step-b { position: relative; font-size: 13.5px; color: var(--w-dim); line-height: 1.6; margin-top: 10px; text-wrap: pretty; }
.w-step-m { position: relative; font-family: var(--w-mono); font-size: 10.5px; color: var(--w-dim-2);
    margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--w-line); }

/* ---------------------------------------------------------------- products */
.w-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.w-filter { position: relative; height: 36px; padding: 0 15px; border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, .10); display: inline-flex; align-items: center; gap: 8px;
    cursor: pointer; font-size: 12.5px; font-weight: 500; color: var(--w-fg-2);
    background: transparent; transition: border-color .15s, background .15s, color .15s; }
.w-filter:hover { border-color: rgba(199, 244, 112, .45); color: var(--w-fg-2); }
.w-filter b { font-family: var(--w-mono); font-size: 10.5px; color: var(--w-dim-2); font-weight: 400; }
.w-filter.is-on { background: var(--w-accent); border-color: var(--w-accent); color: var(--w-bg); }
.w-filter.is-on b { color: rgba(5, 20, 13, .6); }

.w-prods { display: grid; grid-template-columns: repeat(auto-fill, minmax(228px, 1fr)); gap: 12px; margin-top: 40px; }
.w-prod { padding: 20px; border-radius: 16px; background: var(--w-card); border: 1px solid var(--w-line);
    transition: background .15s, border-color .15s; }
.w-prod:hover { background: var(--w-card-hi); border-color: rgba(199, 244, 112, .32); }
.w-prod-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.w-prod-mono { width: 38px; height: 38px; border-radius: 11px; background: rgba(199, 244, 112, .13); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--w-mono); font-size: 11.5px; font-weight: 700; color: var(--w-accent); }
.w-prod-cat { font-family: var(--w-mono); font-size: 9.5px; letter-spacing: .1em; color: var(--w-dim-3); text-align: right; }
.w-prod-name { font-family: var(--w-display); font-size: 17px; font-weight: 600; letter-spacing: -.02em; margin-top: 16px; }
.w-prod-desc { font-size: 12.5px; color: var(--w-dim); line-height: 1.5; margin-top: 6px; min-height: 38px; text-wrap: pretty; }
.w-prod-foot { display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
    margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--w-line); }
.w-prod-price { display: flex; align-items: baseline; gap: 5px; }
.w-prod-price b { font-family: var(--w-display); font-size: 22px; font-weight: 600; letter-spacing: -.03em; color: var(--w-accent); }
.w-prod-price span { font-size: 11.5px; color: var(--w-dim-2); }
.w-prod-tier { font-family: var(--w-mono); font-size: 10.5px; color: var(--w-dim-2); white-space: nowrap; }

/* ---------------------------------------------------------------- features */
.w-feat-grid { max-width: var(--w-max); margin: 0 auto; display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 56px; align-items: start; }
.w-feat-side { position: sticky; top: 100px; }
.w-feat-cells { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px;
    background: var(--w-line-2); border: 1px solid var(--w-line-2); border-radius: 20px; overflow: hidden; }
.w-feat { background: var(--w-card); padding: 26px; transition: background .15s; }
.w-feat:hover { background: var(--w-card-2); }
.w-feat-g { font-family: var(--w-mono); font-size: 13px; color: var(--w-accent); }
.w-feat-t { font-family: var(--w-display); font-size: 18px; font-weight: 600; letter-spacing: -.02em; margin-top: 18px; }
.w-feat-b { font-size: 13px; color: var(--w-dim); line-height: 1.6; margin-top: 9px; text-wrap: pretty; }

/* ----------------------------------------------------------------- pricing */
.w-center { text-align: center; }
.w-tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 44px; align-items: start; }
.w-tier { position: relative; padding: 30px; border-radius: 20px; background: var(--w-card);
    border: 1px solid var(--w-line); display: flex; flex-direction: column; }
.w-tier-hot { background: linear-gradient(160deg, #10412A, var(--w-card));
    border-color: rgba(199, 244, 112, .4); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6); }
.w-tier-flag { display: inline-flex; height: 26px; padding: 0 11px; border-radius: 99px; align-self: flex-start;
    background: var(--w-accent); color: var(--w-bg); align-items: center;
    font-family: var(--w-mono); font-size: 9.5px; letter-spacing: .12em; font-weight: 700; }
.w-tier-n { font-family: var(--w-mono); font-size: 10px; letter-spacing: .16em; color: #9FBFA6; text-transform: uppercase; }
.w-tier-hot .w-tier-n { margin-top: 18px; }
.w-tier-d { display: flex; align-items: baseline; gap: 8px; margin-top: 14px; }
.w-tier-d b { font-family: var(--w-display); font-size: 46px; font-weight: 600; letter-spacing: -.045em; line-height: 1; }
.w-tier-d span { font-size: 13px; color: var(--w-dim); }
.w-tier-r { font-size: 13.5px; color: var(--w-mut); line-height: 1.55; margin-top: 12px; text-wrap: pretty; }
.w-tier-rule { height: 1px; background: rgba(255, 255, 255, .09); margin: 22px 0; }
.w-perks { display: flex; flex-direction: column; gap: 11px; }
.w-perk { display: flex; align-items: flex-start; gap: 10px; }
.w-perk i { font-family: var(--w-mono); font-size: 11px; color: var(--w-accent); line-height: 1.5; font-style: normal; }
.w-perk span { font-size: 13px; color: var(--w-fg-3); line-height: 1.5; }
.w-tier-cta { height: 46px; margin-top: 26px; border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 13.5px; font-weight: 500;
    border: 1px solid var(--w-line-3); color: var(--w-fg-2); transition: border-color .15s, background .15s, color .15s; }
.w-tier-cta:hover { border-color: rgba(199, 244, 112, .5); color: var(--w-fg); }
.w-tier-cta-solid { background: var(--w-accent); border-color: var(--w-accent); color: var(--w-bg); font-weight: 600; }
.w-tier-cta-solid:hover { background: var(--w-accent-hi); border-color: var(--w-accent-hi); color: var(--w-bg); }

/* ------------------------------------------------------------------ quotes */
.w-quotes { max-width: var(--w-max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.w-quote { padding: 28px; border-radius: 18px; background: var(--w-card); border: 1px solid var(--w-line);
    display: flex; flex-direction: column; gap: 20px; }
.w-quote-q { font-family: var(--w-display); font-size: 34px; font-weight: 600; color: rgba(199, 244, 112, .35); line-height: .5; }
.w-quote-t { flex: 1; font-size: 15px; color: var(--w-fg-2); line-height: 1.6; text-wrap: pretty; }
.w-quote-w { display: flex; align-items: center; gap: 11px; padding-top: 18px; border-top: 1px solid var(--w-line); }
.w-quote-m { width: 32px; height: 32px; border-radius: 9px; background: rgba(199, 244, 112, .14); color: var(--w-accent); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-family: var(--w-mono); font-size: 11px; font-weight: 700; }
.w-quote-n { font-size: 13px; font-weight: 500; }
.w-quote-r { font-family: var(--w-mono); font-size: 10.5px; color: var(--w-dim-2); margin-top: 2px; }

/* --------------------------------------------------------------------- faq */
.w-faq-grid { max-width: var(--w-max); margin: 0 auto; display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: 56px; align-items: start; }
.w-faq-box { border-radius: 20px; background: var(--w-card); border: 1px solid var(--w-line); overflow: hidden; }
.w-fq { border-bottom: 1px solid rgba(255, 255, 255, .055); }
.w-fq:last-child { border-bottom: 0; }
.w-fq summary { list-style: none; cursor: pointer; padding: 20px 24px;
    display: flex; align-items: center; gap: 16px; transition: background .15s; }
.w-fq summary::-webkit-details-marker { display: none; }
.w-fq summary:hover { background: rgba(199, 244, 112, .035); }
.w-fq summary > span { flex: 1; font-family: var(--w-display); font-size: 16.5px; font-weight: 500;
    letter-spacing: -.015em; color: var(--w-fg-3); }
.w-fq[open] summary > span { color: var(--w-fg); }
.w-fq summary::after { content: '+'; font-family: var(--w-mono); font-size: 15px; color: var(--w-accent); flex-shrink: 0; }
.w-fq[open] summary::after { content: '−'; }
.w-fq p { font-size: 13.5px; color: var(--w-dim); line-height: 1.65; margin: 0; padding: 0 24px 20px; max-width: 640px; text-wrap: pretty; }

/* --------------------------------------------------------------------- cta */
.w-cta { position: relative; max-width: var(--w-max); margin: 0 auto; overflow: hidden; border-radius: 24px;
    background: linear-gradient(150deg, #10412A 0%, #0A2417 60%, #08200F 100%);
    border: 1px solid rgba(199, 244, 112, .20); padding: 56px; }
.w-cta-glow { position: absolute; right: -80px; top: -80px; width: 420px; height: 420px; border-radius: 999px;
    background: radial-gradient(circle, rgba(199, 244, 112, .20), transparent 68%); pointer-events: none; }
.w-cta-row2 { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.w-cta-h { font-family: var(--w-display); font-size: 46px; font-weight: 600; letter-spacing: -.045em;
    line-height: 1.04; margin: 0; text-wrap: balance; }
.w-cta-p { font-size: 15px; color: var(--w-mut); line-height: 1.6; margin: 18px 0 0; text-wrap: pretty; }
.w-cta-col { display: flex; flex-direction: column; gap: 10px; min-width: 260px; }
.w-cta-col .w-b { justify-content: center; }
.w-cta-fine { font-family: var(--w-mono); font-size: 10.5px; color: var(--w-dim-2); text-align: center; margin-top: 4px; }

/* ------------------------------------------------------------------ footer */
.w-ft { padding: 48px var(--w-gut) 32px; border-top: 1px solid var(--w-lime-l); background: var(--w-panel); }
.w-ft-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 40px; }
.w-ft-blurb { font-size: 13px; color: var(--w-dim-2); line-height: 1.6; margin-top: 14px; max-width: 300px; text-wrap: pretty; }
.w-ft h3 { font-family: var(--w-mono); font-size: 9.5px; letter-spacing: .16em; color: var(--w-dim-4);
    text-transform: uppercase; margin: 0; font-weight: 400; }
.w-ft-links { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.w-ft-links a { font-size: 13px; color: var(--w-mut); }
.w-ft-links a:hover { color: var(--w-accent); }
.w-ft-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px;
    margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--w-line); flex-wrap: wrap;
    font-family: var(--w-mono); font-size: 10.5px; color: var(--w-dim-4); }
.w-ft-bar a { font-family: var(--w-mono); font-size: 10.5px; color: var(--w-dim-4); }
.w-ft-bar a:hover { color: var(--w-accent); }
.w-ft-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ================================================================ responsive
   The source design is drawn at a fixed 1200px. Everything below is the part a
   fixed-width canvas cannot express. */
@media (max-width: 1080px) {
    :root { --w-gut: 28px; }
    .w-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 44px; }
    .w-hero-glow { right: -300px; opacity: .65; }
    .w-lede      { max-width: none; }
    .w-feat-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
    .w-feat-side { position: static; }
    .w-faq-grid  { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .w-grid3, .w-tiers, .w-quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .w-ft-grid { grid-template-columns: minmax(0, 1fr) repeat(2, minmax(0, 1fr)); gap: 32px; }
    .w-h1    { font-size: 58px; }
    .w-h2    { font-size: 38px; }
    .w-cta   { padding: 40px; }
    .w-cta-h { font-size: 38px; }
}

@media (max-width: 860px) {
    .w-sec, .w-sec-plain { padding: 68px var(--w-gut); }
    .w-hero { padding-top: 60px; }

    .w-burger-btn { display: flex; }
    .w-uptime     { display: none; }
    .w-hd > .w-b  { display: none; }
    .w-spring     { display: none; }
    .w-nav {
        position: fixed; inset: 68px 0 auto; margin: 0;
        flex-direction: column; align-items: stretch; gap: 2px;
        padding: 14px var(--w-gut) 22px;
        background: var(--w-panel); border-bottom: 1px solid var(--w-line);
        transform: translateY(-150%); transition: transform .22s ease;
        max-height: calc(100vh - 68px); overflow-y: auto;
    }
    .w-burger:checked ~ .w-nav { transform: translateY(0); }
    .w-nav a { padding: 13px 12px; font-size: 15px; }
    /* Restated because `.w-nav a` would otherwise repaint the button. */
    .w-nav a.w-b { display: inline-flex; margin-top: 8px; height: 46px; color: var(--w-fg-2); background: transparent; }
    .w-nav a.w-b-pri, .w-nav a.w-b-pri:hover { color: var(--w-bg); background: var(--w-accent); }
    .w-nav a.w-b-pri:hover { background: var(--w-accent-hi); }

    .w-grid3, .w-tiers, .w-quotes { grid-template-columns: minmax(0, 1fr); }
    .w-feat-cells { grid-template-columns: minmax(0, 1fr); }
    .w-ft-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .w-head-row   { align-items: flex-start; gap: 24px; }
    .w-mock-wrap::before { display: none; }
}

@media (max-width: 560px) {
    :root { --w-gut: 18px; }
    .w-h1    { font-size: 40px; }
    .w-h2    { font-size: 30px; }
    .w-cta   { padding: 28px; border-radius: 18px; }
    .w-cta-h { font-size: 30px; }
    .w-lede  { font-size: 15px; }
    .w-stat3 { grid-template-columns: minmax(0, 1fr); }
    .w-prods { grid-template-columns: minmax(0, 1fr); }
    .w-ft-grid { grid-template-columns: minmax(0, 1fr); }
    .w-cta-row .w-b, .w-cta-col .w-b { width: 100%; }
    .w-cta-note { margin-left: 0; }
    .w-cta-col  { min-width: 0; width: 100%; }
    .w-mock-bal { font-size: 28px; }
    .w-fq summary { padding: 16px 18px; }
    .w-fq p { padding: 0 18px 16px; }
}

/* The category filter is a radio group. The per-category rules are emitted by
   the view (the categories are whatever the catalogue holds); these are the
   parts that do not vary. */
.w-catradio { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.w-filter { user-select: none; }
#w-cat-all:checked ~ .w-head-row [for="w-cat-all"] {
    background: var(--w-accent); border-color: var(--w-accent); color: var(--w-bg);
}
#w-cat-all:checked ~ .w-head-row [for="w-cat-all"] b { color: rgba(5, 20, 13, .6); }
/* A radio has no visible box of its own, so the label carries the focus ring. */
.w-catradio:focus-visible ~ .w-head-row .w-filters label { outline: 2px solid var(--w-accent); outline-offset: 3px; }

/* Reachable by a screen reader, absent from the layout. */
.w-sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px;
    overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

/* ------------------------------------------------------------------ product
   The product and category pages. They reuse the landing page's sections,
   spacing and type scale; only the pieces the landing has no equivalent for
   are defined here. */

.w-crumbs { border-bottom: 1px solid var(--w-line); padding: 14px 0; font-size: 12.5px; }
.w-crumbs .w-in { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.w-crumbs a { color: var(--w-dim-2); text-decoration: none; }
.w-crumbs a:hover { color: var(--w-accent); }
.w-crumbs span[aria-hidden] { color: var(--w-dim-4); }
.w-crumbs [aria-current] { color: var(--w-fg); }

.w-prod-hero { padding-top: 46px; }
.w-prod-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.w-prod-h1 { font-size: 46px; line-height: 1.08; margin-top: 12px; max-width: 15ch; }
.w-prod-lede { margin-top: 16px; max-width: 52ch; font-size: 16px; }
.w-prod-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.w-ed-panel { border: 1px solid var(--w-line); border-radius: 14px; padding: 20px;
    background: var(--w-card); }
.w-ed-list { list-style: none; margin: 14px 0 0; padding: 0; }
.w-ed-list li { display: flex; justify-content: space-between; align-items: baseline;
    gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--w-line); }
.w-ed-list li:last-child { border-bottom: 0; }
.w-ed-n { font-size: 13.5px; }
.w-ed-p { font-family: var(--w-mono); font-size: 14px; color: var(--w-accent);
    white-space: nowrap; }
.w-ed-p small { color: var(--w-dim-3); font-size: 11px; }
.w-ed-note { margin-top: 14px; font-size: 12px; color: var(--w-dim-3); line-height: 1.55; }

.w-prose { max-width: 68ch; }
.w-prose p { font-size: 15.5px; line-height: 1.75; color: var(--w-dim); margin: 0 0 18px; }
.w-prose p:last-child { margin-bottom: 0; }

.w-prod-feats { margin-top: 26px; }
.w-feat-t { font-size: 15px; margin: 0 0 7px; }
.w-feat-d { font-size: 13.5px; color: var(--w-dim-2); line-height: 1.6; margin: 0; }

.w-faq { margin-top: 24px; max-width: 76ch; }
.w-faq-i { border-bottom: 1px solid var(--w-line); }
.w-faq-i summary { cursor: pointer; padding: 17px 0; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.w-faq-i summary::-webkit-details-marker { display: none; }
.w-faq-i summary::after { content: "+"; color: var(--w-accent); font-family: var(--w-mono);
    font-size: 17px; flex: none; }
.w-faq-i[open] summary::after { content: "\2212"; }
.w-faq-i summary h3 { font-size: 15px; margin: 0; font-weight: 500; }
.w-faq-i p { margin: 0 0 18px; font-size: 14px; line-height: 1.7; color: var(--w-dim-2);
    max-width: 66ch; }

.w-rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.w-rel { display: flex; flex-direction: column; gap: 7px; padding: 17px;
    border: 1px solid var(--w-line); border-radius: 12px; text-decoration: none;
    background: var(--w-card); transition: border-color .16s, transform .16s; }
.w-rel:hover { border-color: var(--w-accent-lk); transform: translateY(-2px); }
.w-rel-n { font-size: 14.5px; color: var(--w-fg); }
.w-rel-d { font-size: 12.5px; color: var(--w-dim-3); line-height: 1.55; }
.w-rel-p { font-family: var(--w-mono); font-size: 12px; color: var(--w-accent); margin-top: 4px; }
.w-rel-more { margin-top: 20px; font-size: 13px; }
.w-rel-more a { color: var(--w-dim-2); }
.w-rel-more a:hover { color: var(--w-accent); }

@media (max-width: 1080px) {
    .w-prod-grid { grid-template-columns: 1fr; gap: 32px; }
    .w-prod-h1 { font-size: 40px; max-width: none; }
    .w-rel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .w-prod-h1 { font-size: 32px; }
    .w-rel-grid { grid-template-columns: 1fr; }
    .w-prod-cta .w-b { width: 100%; justify-content: center; }
}

/* A product card that is a link keeps the card's own look. */
.w-prod-lk { text-decoration: none; color: inherit; display: flex;
    flex-direction: column; transition: border-color .16s, transform .16s; }
.w-prod-lk:hover { border-color: var(--w-accent-lk); transform: translateY(-2px); }

/* The closing call to action on a product page. */
.w-cta-end { border-top: 1px solid var(--w-line); }
.w-cta-line { font-size: 19px; line-height: 1.55; max-width: 46ch; margin: 0 0 24px;
    color: var(--w-fg-2); }
@media (max-width: 560px) { .w-cta-line { font-size: 16.5px; } }

/* The public price list: denser than the related-product grid, and its
   rows are not all links - a product with no page of its own still has to
   sit in the list at the same size. */
.w-price-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
.w-price-grid .w-rel { gap: 10px; }
.w-rel-flat { cursor: default; }
.w-rel-flat:hover { border-color: var(--w-line); transform: none; }
.w-price-grid .w-rel-p small { color: var(--w-dim-3); font-size: 11px; }
@media (max-width: 1080px) { .w-price-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px)  { .w-price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .w-price-grid { grid-template-columns: 1fr; } }

/* Language switcher in the header. Small, monospaced, sits beside the
   sign-in buttons; the active language is filled rather than outlined so
   the current state reads without relying on colour alone. */
.w-lang { display: flex; gap: 2px; align-items: center; margin-right: 10px;
    border: 1px solid var(--w-line); border-radius: 8px; padding: 2px; }
.w-lang-i { font-family: var(--w-mono); font-size: 11px; letter-spacing: .06em;
    padding: 5px 8px; border-radius: 6px; color: var(--w-dim-2);
    text-decoration: none; line-height: 1; transition: color .15s, background .15s; }
.w-lang-i:hover { color: var(--w-fg); }
.w-lang-i.is-on { background: var(--w-accent); color: var(--w-bg); }
@media (max-width: 1080px) { .w-lang { margin-right: 6px; } }

/* Category and package listings: wider cards than the related-product
   grid, because these rows carry a description as well as a name. */
.w-cat-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .w-cat-grid { grid-template-columns: 1fr; } }
