/* rubik-latin-400-normal */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/fonts/rubik-latin-400-normal.woff2") format("woff2");
}
/* rubik-latin-500-normal */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("/fonts/rubik-latin-500-normal.woff2") format("woff2");
}
/* rubik-latin-700-normal */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url("/fonts/rubik-latin-700-normal.woff2") format("woff2");
}
/* roboto-latin-400-normal */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/fonts/roboto-latin-400-normal.woff2") format("woff2");
}
/* ============================================================
   Cybeward 2.0 — shared design system
   Brand tokens lifted from cybeward_web/styles/base.css,
   evolved into the blog-prototype aesthetic.
   ============================================================ */
:root {
  --green: #5fdd4b;
  --aqua: #25c0c8;
  --cobalt: #1559d8;
  --underline: #00ce08;
  --line: #d9d9d9;
  --muted: #b2b2b2;
  --ink: #111111;
  --ink-soft: #3a3a3a;
  --black: #000000;
  --white: #ffffff;
  --bg-soft: #fafafa;
  --brand-gradient: linear-gradient(135deg, var(--aqua) 0%, var(--green) 52%, var(--cobalt) 100%);
  --radius-card: 42px;
  --radius-pill: 999px;
  --shadow-hover: 0 24px 48px -24px rgba(17, 17, 17, .28);
  --fast: 160ms ease;
  --maxw: 1180px;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: "Rubik", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
h1, h2, h3, h4, p { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0 0; }
.section--tight { padding-top: clamp(40px, 5vw, 56px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 14px; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 7px 16px;
}
.eyebrow .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand-gradient); }
.lede { color: var(--ink-soft); }
.accent {
  background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Launch offer badge ---------- */
.launch-badge {
  display: inline-block; margin-top: 20px; max-width: 100%;
  font-size: 14px; font-weight: 500; line-height: 1.45; color: var(--ink);
  background: #eafff0; border: 1px solid #cdeec6; border-radius: 14px; padding: 8px 16px;
}
.launch-badge strong { font-weight: 700; color: #1f7d14; }

/* ---------- Animated green underline (brand signature) ---------- */
.ul-link { position: relative; }
.ul-link::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 4px; border-radius: var(--radius-pill);
  background: var(--underline); transition: width var(--fast);
}
.ul-link:hover::after, .ul-link:focus-visible::after, .ul-link[aria-current="page"]::after { width: 100%; }

/* In-text links: plain blue underline (green underline is reserved for nav/controls) */
.tlink { color: var(--cobalt); text-decoration: underline; text-underline-offset: 3px; }
.tlink:hover, .contact-copy a:hover, .dept a:hover { text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 500; cursor: pointer; border-radius: var(--radius-pill);
  padding: 14px 26px; line-height: 1; white-space: nowrap;
  transition: background var(--fast), color var(--fast), border-color var(--fast), transform var(--fast);
}
.btn:active { transform: translateY(1px); }
.btn-black { background: var(--black); color: var(--white); border: 1px solid var(--black); }
.btn-black:hover { background: #222; }
.btn-white { background: var(--white); color: var(--black); border: 1px solid var(--black); }
.btn-white:hover { background: #f1f1f1; }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, .88); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand__logo { width: 34px; height: 40px; }
.brand__word { width: 162px; height: 20px; } /* wordmark aspect 8.1:1 */
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-weight: 500; font-size: 16px; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.lang { font-weight: 500; font-size: 14px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.lang button,
.lang a { font: inherit; border: 0; background: none; color: var(--muted); cursor: pointer; padding: 0; text-decoration: none; }
.lang button.on,
.lang a.on { color: var(--ink); }
.menu-toggle { display: none; width: 50px; height: 34px; align-items: center; justify-content: center; border: 1px solid var(--ink); border-radius: var(--radius-pill); background: var(--white); cursor: pointer; padding: 0; }
.menu-toggle__icon { display: flex; flex-direction: column; gap: 5px; }
.menu-toggle__icon span { display: block; width: 22px; height: 3px; border-radius: 999px; background: var(--ink); }
.menu-toggle__icon span:nth-child(2) { background: var(--green); }
@media (max-width: 880px) {
  .nav { display: none; }
  .header-actions .lang { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 600px) {
  .brand__word { width: 120px; height: 15px; }
  .header-actions { gap: 10px; }
}
@media (max-width: 360px) {
  .brand__word { width: 90px; height: 11px; }
}

/* ---------- Mobile menu panel ---------- */
.mnav { display: none; position: fixed; inset: 0; z-index: 100; background: var(--white); overflow-y: auto; }
body.menu-open { overflow: hidden; overscroll-behavior: contain; }
html:has(body.menu-open) { overflow: hidden; }
body.menu-open .mnav { display: block; }
.mnav__canvas { min-height: 100%; display: flex; flex-direction: column; gap: 32px; padding: 18px 24px 32px; }
.mnav__top { order: 1; }
.mnav__lang { order: 2; }
.mnav__links { order: 3; }
.mnav__foot { order: 4; }
.mnav__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mnav__actions { display: flex; align-items: center; gap: 10px; }
.mnav__close { position: relative; width: 50px; height: 34px; border: 1px solid var(--ink); border-radius: var(--radius-pill); background: var(--white); cursor: pointer; flex: 0 0 auto; }
.mnav__close span { position: absolute; top: 50%; left: 50%; width: 16px; height: 2px; background: var(--ink); border-radius: 999px; }
.mnav__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.mnav__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.mnav__links { display: flex; flex-direction: column; }
.mnav__links a { font-size: 22px; font-weight: 600; padding: 16px 0; border-bottom: 1px solid var(--line); }
.mnav__lang { display: flex; width: fit-content; border: 1px solid var(--ink); border-radius: 999px; overflow: hidden; }
.mnav__lang button,
.mnav__lang a { font: inherit; font-size: 14px; font-weight: 500; border: 0; background: transparent; color: var(--ink); padding: 10px 22px; cursor: pointer; text-decoration: none; }
.mnav__lang button.on,
.mnav__lang a.on { background: var(--black); color: var(--white); }
.mnav__foot { margin-top: auto; color: var(--muted); font-size: 13px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: clamp(56px, 8vw, 96px) 0 0; overflow: hidden; }
.hero__glow {
  position: absolute; top: -160px; right: -120px; width: 560px; height: 560px; border-radius: 50%;
  background: var(--brand-gradient); filter: blur(120px); opacity: .14; pointer-events: none; z-index: 0;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 {
  font-size: clamp(34px, 5vw, 56px); font-weight: 700; line-height: 1.04; letter-spacing: -.015em;
  margin-top: 26px; max-width: 22ch;
}
.hero p { font-size: clamp(17px, 2vw, 22px); line-height: 1.4; margin-top: 26px; max-width: 52ch; }
.hero__cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__art { justify-self: end; }
.hero__art img { width: clamp(220px, 30vw, 410px); height: auto; }
@media (max-width: 820px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { display: none; }
}

/* ---------- Trust strip ---------- */
.trust {
  margin-top: clamp(40px, 6vw, 72px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  border: 1px solid var(--line); border-radius: var(--radius-card); padding: 28px 36px;
}
.trust__item { display: flex; flex-direction: column; gap: 4px; }
.trust__num { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -.01em; }
.trust__label { font-size: 14px; color: var(--muted); }
@media (max-width: 720px) { .trust { grid-template-columns: 1fr 1fr; gap: 24px 16px; } }
@media (max-width: 380px) { .trust { grid-template-columns: 1fr; gap: 20px; } }

/* ============================================================
   Section heading
   ============================================================ */
.section__head .eyebrow { margin-bottom: 18px; }
.section__head h2 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 700; line-height: 1.06; letter-spacing: -.015em; }
.section__head p { margin-top: 18px; font-size: 18px; color: var(--ink-soft); }
.section__head--center { margin: 0 auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

/* ============================================================
   Feature cards (money-back / discount)
   ============================================================ */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; }
.feature {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius-card); padding: 36px;
  transition: box-shadow var(--fast), transform var(--fast);
}
.feature:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.feature h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; }
.feature p { margin-top: 14px; font-size: 16px; color: var(--ink-soft); }
.feature__cta { margin-top: 24px; }
.feature__art { width: 96px; height: auto; align-self: center; }
@media (max-width: 760px) { .features { grid-template-columns: 1fr; } .feature { padding: 28px; } }

/* ============================================================
   Pricing
   ============================================================ */
.pricing__bullets { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.pricing__bullet { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--ink-soft); }
.pricing__bullet img { width: 16px; height: 12px; }
.pricing__controls { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; margin-top: 32px; }
.ctrl { display: flex; flex-direction: column; gap: 8px; }
.ctrl__label { font-size: 13px; font-weight: 500; color: var(--muted); }
.currency { display: inline-flex; gap: 8px; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 4px; }
.currency button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 40px;
  font: inherit; font-size: 14px; font-weight: 500; cursor: pointer; border: 0; background: none;
  color: var(--ink); padding: 4px 18px; border-radius: var(--radius-pill); transition: background var(--fast), color var(--fast);
}
.currency button.is-active { background: var(--black); color: var(--white); }
.currency button[disabled] { color: var(--muted); cursor: not-allowed; }
.currency button .soon { margin-left: 7px; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--white); background: var(--muted); border-radius: var(--radius-pill); padding: 2px 7px; vertical-align: middle; }
.currency-tab__row { display: inline-flex; align-items: center; gap: 8px; }
.currency-tab .flag { display: inline-flex; width: 22px; height: 22px; flex: 0 0 auto; align-items: center; justify-content: center; border-radius: 50%; overflow: hidden; font-size: 10px; }
.catalog-loading { color: var(--muted); font-size: 14px; }

@media (max-width: 640px) {
  .pricing__controls .currency:not(.currency-tabs) { display: flex; flex-wrap: wrap; gap: 12px 10px; border: 0; padding: 0; border-radius: 0; }
  .pricing__controls .currency:not(.currency-tabs) button { border: 1px solid var(--line); border-radius: var(--radius-pill); position: relative; height: 42px; min-height: 0; padding: 0 20px; line-height: 1; }
  .pricing__controls .currency:not(.currency-tabs) button[disabled] { margin-bottom: 14px; }
  .pricing__controls .currency:not(.currency-tabs) .soon { position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%); margin-left: 0; }
}

.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.plan {
  display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 32px 36px 28px; background: var(--white); transition: box-shadow var(--fast), transform var(--fast); position: relative;
}
.plan:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.plan--featured { border-color: var(--line); }
.plan__tag {
  position: absolute; top: -13px; left: 36px; background: var(--white); color: var(--ink); border: 1px solid var(--line);
  font-size: 12px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill);
}
.plan__name { font-size: 22px; font-weight: 700; }
.plan__specs { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.plan__specs li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.plan__specs img { width: 22px; height: 22px; flex: 0 0 auto; }
.plan__price { margin-top: auto; padding-top: 28px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 6px; }
.plan__amount { font-size: 32px; font-weight: 700; letter-spacing: -.01em; }
.plan__period { font-size: 15px; color: var(--muted); }
.plan__old { flex-basis: 100%; color: var(--muted); text-decoration: line-through; font-size: 18px; font-weight: 500; }
.plan__vat { margin-top: 0; font-size: 13px; color: var(--muted); }
.plan .btn { margin-top: 24px; font-size: 0.95rem; padding: 0.85em 1.7em; }
@media (max-width: 980px) { .pricing__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pricing__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Benefits (3-up)
   ============================================================ */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.benefit {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.benefit__art { height: 96px; display: flex; align-items: center; }
.benefit__art img { height: 100%; width: auto; }
.benefit h3 { font-size: 24px; font-weight: 700; line-height: 1; }
.benefit p { font-size: 15px; color: var(--ink-soft); }
@media (max-width: 820px) { .benefits { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* ============================================================
   Philosophy (image + points)
   ============================================================ */
.philosophy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.phil-card { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.phil-card__art { height: 88px; display: flex; align-items: center; }
.phil-card__art img { height: 100%; width: auto; }
.phil-card h3 { font-size: 20px; font-weight: 600; }
.phil-card p { font-size: 15px; color: var(--ink-soft); }
@media (max-width: 820px) { .philosophy { grid-template-columns: 1fr; } }

/* ---------- Departments (image + contacts) ---------- */
#departments { scroll-margin-top: 96px; }
.departments { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; margin-top: 48px; }
.departments__art img { width: 100%; height: auto; }
.dept-list { display: flex; flex-direction: column; gap: 28px; }
.dept h3 { font-size: 20px; font-weight: 600; }
.dept p { margin-top: 8px; font-size: 15px; color: var(--ink-soft); }
.dept a { display: inline-block; margin-top: 10px; color: var(--cobalt); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 820px) { .departments { grid-template-columns: 1fr; gap: 36px; } .departments__art { max-width: 360px; } }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  margin-top: clamp(72px, 10vw, 120px); background: var(--black); color: var(--white);
  border-radius: var(--radius-card); padding: clamp(32px, 4vw, 44px) clamp(40px, 6vw, 72px); position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: end;
}
.cta-band__glow { position: absolute; right: -80px; top: -160px; width: 420px; height: 420px; border-radius: 50%; background: var(--brand-gradient); filter: blur(110px); opacity: .35; }
.section .cta-band { margin-top: 0; } /* avoid double spacing when wrapped in a .section (e.g. About) */
.cta-band h2 { position: relative; font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; max-width: 16ch; }
.cta-band p { position: relative; margin-top: 16px; color: #c4c4c4; font-size: 17px; }
.cta-band__actions { position: relative; display: flex; gap: 14px; flex-wrap: wrap; justify-self: end; }
.cta-band__actions .btn { padding: 18px 38px; font-size: 17px; }
@media (max-width: 760px) {
  .cta-band { grid-template-columns: 1fr; }
  .cta-band__actions { justify-self: stretch; width: 100%; flex-direction: column; align-items: stretch; }
  .cta-band__actions .btn { width: 100%; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer { margin-top: clamp(72px, 10vw, 120px); border-top: 1px solid var(--line); padding: 64px 0 48px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, auto); gap: 48px; }
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: 14px; max-width: 34ch; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: border-color var(--fast); }
.footer__social a:hover { border-color: var(--ink); }
.footer__social img { width: 20px; height: auto; }
.footer h4 { font-size: 16px; font-weight: 500; margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 14px; }
.footer__links a { font-size: 14px; color: #444; }
.footer__links a:hover { color: var(--ink); }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__grid > div:nth-of-type(2) { grid-column: 2; grid-row: 2; } /* Info */
  .footer__grid > div:nth-of-type(3) { grid-column: 1; grid-row: 2; } /* Company */
  .footer__grid > div:nth-of-type(4) { grid-column: 1 / -1; grid-row: 3; } /* Legal */
  .footer__grid > div:nth-of-type(4) .footer__links { flex-direction: row; flex-wrap: wrap; gap: 12px 24px; }
}

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero { padding: clamp(48px, 7vw, 88px) 0 0; }
.page-hero h1 { font-size: clamp(30px, 4.2vw, 50px); font-weight: 700; line-height: 1.06; letter-spacing: -.015em; margin-top: 20px; max-width: 24ch; }
.page-hero p { margin-top: 22px; font-size: clamp(17px, 2vw, 21px); color: var(--ink-soft); max-width: 60ch; line-height: 1.45; }
.page-hero--split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; align-items: center; }
.page-hero--gap { gap: 96px; }
.page-hero--split .page-hero__art img { width: 100%; height: auto; }
@media (max-width: 820px) { .page-hero--split { grid-template-columns: 1fr; } .page-hero--split .page-hero__art { display: none; } }

/* ============================================================
   FAQ (accordion)
   ============================================================ */
.faq-list { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 0; display: flex; align-items: flex-start;
  justify-content: space-between; gap: 24px; font-size: clamp(18px, 2.2vw, 22px); font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 4px; transition: transform var(--fast); color: var(--muted); }
.faq-item[open] summary .chev { transform: rotate(45deg); color: var(--green); }
.faq-item__body { padding: 0 56px 28px 0; }
.faq-item__body p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.faq-item__body p + p, .faq-item__body ul + p { margin-top: 14px; }
.faq-item__body ul { margin: 14px 0 0; padding-left: 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; margin-top: 48px; align-items: start; }
.contact-copy p { font-size: 17px; line-height: 1.6; color: var(--ink-soft); }
.contact-copy a { color: var(--cobalt); text-decoration: underline; text-underline-offset: 3px; }
.contact-aside { border: 1px solid var(--line); border-radius: var(--radius-card); padding: 28px 36px; }
.contact-aside h4 { font-size: 16px; font-weight: 600; }
.contact-aside p { font-size: 15px; color: var(--ink-soft); line-height: 1.5; margin-top: 10px; }
.contact-aside .tlink { display: inline-block; margin-top: 16px; font-weight: 500; }
.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 500; }
.field input, .field textarea {
  font: inherit; border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px; background: var(--white); color: var(--ink); outline: 0;
  transition: border-color var(--fast);
}
.field input { border-radius: var(--radius-pill); }
.field input:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.char-count { font-size: 13px; color: var(--muted); text-align: right; }
.contact-verification { min-height: 65px; }
.contact-submit:disabled { cursor: progress; opacity: .65; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   From the blog (home teaser)
   ============================================================ */
.blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.blog-head h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.06; letter-spacing: -.015em; }
.blog-head a { font-weight: 500; white-space: nowrap; }
.lead-arrow { color: var(--green); font-size: 1.5em; line-height: 1; vertical-align: -0.08em; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bcard { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; background: var(--white); transition: box-shadow var(--fast), transform var(--fast); }
.bcard:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.bcard__thumb { height: 160px; position: relative; overflow: hidden; }
.bcard__thumb .hexart { position: absolute; inset: 0; }
.bcard__cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-featured__img, .blog-hero-media__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.thumb-green { background: linear-gradient(135deg, #eafff0, #c8f6c0); }
.thumb-aqua { background: linear-gradient(135deg, #e3fbfc, #b9eef0); }
.thumb-cobalt { background: linear-gradient(135deg, #e7eefc, #bcd2f7); }
.bcard__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.bcard__body h3 { font-size: 19px; font-weight: 600; line-height: 1.22; margin-top: 14px; }
.bcard__body p { margin-top: 12px; font-size: 15px; line-height: 1.5; color: #555; flex: 1; }
.bcard__body .bmeta { margin-top: auto; padding-top: 18px; }
.btag { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.btag .d { width: 8px; height: 8px; border-radius: 50%; }
.bmeta { margin-top: 18px; color: var(--muted); font-size: 14px; display: flex; gap: 10px; align-items: center; }
.bmeta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Legal pages
   ============================================================ */
.legal-hero { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.legal-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 700; line-height: 1.04; letter-spacing: -.015em; max-width: 12ch; }
.legal-hero-art, .legal-hero img { width: clamp(260px, 34vw, 440px); height: auto; }
.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 220px; gap: 64px; align-items: start; margin-top: clamp(48px, 6vw, 80px); }
.legal-document-title { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
.legal-sections { display: flex; flex-direction: column; gap: 56px; margin-top: 48px; }
.legal-section { display: flex; flex-direction: column; gap: 18px; }
.legal-section-title { font-size: clamp(20px, 2.6vw, 26px); font-weight: 700; line-height: 1.15; letter-spacing: -.005em; }
.legal-copy { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.legal-copy a { color: var(--cobalt); text-decoration: underline; text-underline-offset: 3px; }
.legal-copy a:hover { text-decoration: none; }
.legal-copy--double, .legal-copy--list, .legal-copy--rich { display: flex; flex-direction: column; gap: 14px; }
.legal-copy--double p, .legal-copy--list p, .legal-copy--rich p, .legal-copy--rich ul, .legal-copy--rich blockquote { margin: 0; }
.legal-bullet-list { margin: 0; padding-left: 22px; }
.legal-bullet-list li + li { margin-top: 12px; }
.legal-copy--rich blockquote { border-left: 3px solid var(--line); padding-left: 16px; }
.legal-copy--rich mark { background: rgba(95, 221, 75, .25); color: inherit; }
.legal-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 22px; }
.legal-sidebar a { position: relative; width: fit-content; font-size: 15px; font-weight: 500; line-height: 1.3; color: var(--ink); }
.legal-sidebar a::after { content: ""; display: block; width: 0; height: 4px; margin-top: 6px; border-radius: var(--radius-pill); background: var(--underline); transition: width var(--fast); }
.legal-sidebar a:hover::after, .legal-sidebar a.is-active::after { width: 100%; }
.legal-sidebar a.is-active { font-weight: 600; }
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 12px 22px; order: -1; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
  .legal-hero-art, .legal-hero img { display: none; }
}

/* ============================================================
   Payment methods page
   ============================================================ */
.subhead { font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; line-height: 1.15; letter-spacing: -.005em; margin-top: 48px; }
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.pay-card { border: 1px solid var(--line); border-radius: var(--radius-card); padding: 28px 36px; }
.pay-card h3 { font-size: 18px; font-weight: 600; }
.pay-card p { margin-top: 10px; font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.pay-brands { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pay-brand { font-size: 13px; font-weight: 500; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px 13px; }
.pay-note { margin-top: 28px; background: #f5fff3; border: 1px solid #cdeec6; border-left: 4px solid var(--green); border-radius: 14px; padding: 20px 24px; font-size: 15px; line-height: 1.55; color: var(--ink); }
.pay-rules { margin: 22px 0 0; padding-left: 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.pay-rules li + li { margin-top: 10px; }
.steps { counter-reset: step; list-style: none; padding: 0; margin-top: 26px; display: flex; flex-direction: column; gap: 16px; max-width: 760px; }
.steps li { position: relative; padding-left: 50px; font-size: 16px; line-height: 1.5; color: var(--ink-soft); }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: -3px; width: 32px; height: 32px; border-radius: 50%; background: var(--black); color: var(--white); font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
@media (max-width: 820px) { .pay-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Data centers page
   ============================================================ */
.dc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px; }
.dc-card { display: flex; flex-direction: column; height: 100%; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 28px 36px; transition: box-shadow var(--fast), transform var(--fast); }
.dc-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.dc-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.dc-card__head h3 { font-size: 20px; font-weight: 700; line-height: 1.15; }
.dc-card__sub { margin-top: 3px; font-size: 13px; color: var(--muted); }
.dc-soon { flex: 0 0 auto; font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 4px 10px; }
.dc-photo { margin: 16px 0; height: 170px; border-radius: 12px; border: 1px solid var(--line); background: linear-gradient(135deg, #e3fbfc, #c8f6c0); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; letter-spacing: .04em; color: rgba(17, 17, 17, .5); }
.dc-desc { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.dc-meta { margin-top: 10px; font-size: 14px; color: var(--ink-soft); }
.dc-meta strong { color: var(--ink); font-weight: 600; }
.dc-foot { margin-top: auto; padding-top: 14px; font-size: 14px; color: var(--ink-soft); display: flex; flex-direction: column; gap: 8px; }
.dc-foot strong { color: var(--ink); font-weight: 600; }
.dc-foot--soon { color: var(--muted); }
.dc-ip { align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; font: inherit; font-size: 14px; color: var(--cobalt); background: none; border: 0; border-bottom: 1px dotted var(--muted); padding: 0 0 1px; cursor: pointer; }
.dc-ip svg { width: 14px; height: 14px; }
.dc-files a { color: var(--cobalt); text-decoration: underline; text-underline-offset: 3px; }
.dc-files a:hover { text-decoration: none; }
#copy-tip { position: fixed; transform: translateX(-50%); background: var(--black); color: var(--white); font-size: 12px; padding: 5px 10px; border-radius: 8px; z-index: 200; opacity: 0; pointer-events: none; transition: opacity 120ms ease; }
#copy-tip.show { opacity: 1; }
@media (max-width: 900px) { .dc-grid { grid-template-columns: 1fr; max-width: 460px; } }

/* ============================================================
   Blog (listing + article) — integrated into the site
   ============================================================ */
/* Listing toolbar */
.blog-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 36px; }
.blog-search { flex: 1 1 280px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 12px 20px; min-width: 240px; transition: border-color var(--fast); }
.blog-search:focus-within { border-color: var(--ink); }
.blog-search input { border: 0; outline: 0; font: inherit; width: 100%; background: transparent; }
.blog-search svg { width: 18px; height: 18px; flex: 0 0 auto; color: var(--muted); }
.blog-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip { display: inline-flex; align-items: center; font: inherit; font-size: 14px; font-weight: 500; cursor: pointer; padding: 9px 18px; border-radius: var(--radius-pill); border: 1px solid var(--line); background: var(--white); color: var(--ink); transition: background var(--fast), color var(--fast), border-color var(--fast); }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--black); color: var(--white); border-color: var(--black); }

/* Featured post */
.blog-featured { display: grid; grid-template-columns: 1.05fr .95fr; border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; background: var(--white); margin-top: 40px; transition: box-shadow var(--fast), transform var(--fast); }
.blog-featured:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.blog-featured__media { position: relative; min-height: 320px; background: var(--brand-gradient); overflow: hidden; }
.blog-featured__media .hexart { position: absolute; inset: 0; }
.blog-featured__badge { position: absolute; top: 24px; left: 24px; background: rgba(255, 255, 255, .92); border-radius: var(--radius-pill); padding: 8px 16px; font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.blog-featured__body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured__body h2 { font-size: clamp(24px, 3.4vw, 36px); line-height: 1.1; font-weight: 700; letter-spacing: -.01em; margin-top: 16px; }
.blog-featured__body p { font-size: 17px; color: var(--ink-soft); margin-top: 16px; }
@media (max-width: 820px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__media { min-height: 200px; }
  .blog-featured__body { padding: 24px; }
  .blog-featured__body p { font-size: 15px; margin-top: 12px; }
  .blog-featured__body .bmeta { flex-direction: column; align-items: flex-start; gap: 4px; font-size: 13px; }
  .blog-featured__body .bmeta .sep { display: none; }
}

/* Article: reading progress */
.reading-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--brand-gradient); z-index: 60; transition: width 60ms linear; }

/* Article header */
.blog-crumbs { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; padding-top: 28px; flex-wrap: wrap; }
.blog-article-head { max-width: 800px; padding-top: 18px; }
.blog-article-head h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; line-height: 1.05; letter-spacing: -.015em; margin-top: 16px; }
.blog-article-head .lede { font-size: clamp(18px, 2.2vw, 22px); color: var(--ink-soft); line-height: 1.4; margin-top: 20px; }
.blog-byline { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.blog-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--brand-gradient); flex: 0 0 auto; }
.blog-byline .who { font-weight: 500; font-size: 15px; }
.blog-byline .bmeta { margin-top: 2px; }
.blog-hero-media { margin-top: 36px; height: clamp(220px, 38vw, 420px); border-radius: var(--radius-card); background: var(--brand-gradient); position: relative; overflow: hidden; }
.blog-hero-media .hexart { position: absolute; inset: 0; }

/* Article layout + TOC */
.blog-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 56px; padding-top: 56px; align-items: start; }
.blog-toc { position: sticky; top: 100px; }
.blog-toc h4 { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.blog-toc a { display: block; font-size: 14px; color: #555; padding: 7px 0 7px 14px; border-left: 2px solid var(--line); transition: color var(--fast), border-color var(--fast); }
.blog-toc a:hover { color: var(--ink); }
.blog-toc a.is-active { color: var(--ink); font-weight: 500; border-left-color: var(--green); }
@media (max-width: 920px) { .blog-layout { grid-template-columns: minmax(0, 1fr); gap: 0; } .blog-toc { display: none; } }

/* Prose */
.prose { max-width: 720px; font-size: 18px; line-height: 1.72; color: #222; }
.prose > * + * { margin-top: 24px; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; line-height: 1.15; letter-spacing: -.01em; margin-top: 56px; scroll-margin-top: 100px; }
.prose h3 { font-size: 21px; font-weight: 600; margin-top: 40px; scroll-margin-top: 100px; }
.prose a { color: var(--cobalt); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { text-decoration: none; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li + li { margin-top: 10px; }
.prose li::marker { color: var(--ink); }
.prose strong { font-weight: 600; }
.prose code { font-family: var(--mono); font-size: .86em; background: #f3f4f3; border: 1px solid var(--line); border-radius: 6px; padding: 2px 6px; }
.prose blockquote { margin: 32px 0 0; padding: 6px 0 6px 24px; border-left: 4px solid var(--ink); font-size: 22px; line-height: 1.4; font-weight: 500; }
.prose figure.code { margin: 24px 0 0; border-radius: 16px; overflow: hidden; border: 1px solid #2a2a2a; }
.prose figure.code figcaption { background: #161616; color: #9a9a9a; font-family: var(--mono); font-size: 12px; padding: 10px 18px; border-bottom: 1px solid #2a2a2a; display: flex; align-items: center; gap: 8px; }
.prose figure.code .dotc { width: 10px; height: 10px; border-radius: 50%; }
.prose pre { margin: 0; background: #0e0e0e; color: #e8e8e8; font-family: var(--mono); font-size: 14px; line-height: 1.7; padding: 20px 22px; overflow-x: auto; }
.prose > pre { margin-top: 24px; }
.prose pre code { background: none; border: 0; padding: 0; color: inherit; font-size: inherit; }
.prose pre .c { color: #6f9b6a; }
.prose pre .p { color: var(--green); }
.prose pre .k { color: #57c4cc; }
.blog-callout { display: flex; gap: 16px; background: #f5fff3; border: 1px solid #cdeec6; border-radius: 14px; padding: 20px 22px; font-size: 16px; }
.blog-callout.warn { background: #eef3ff; border-color: #cad9f7; }
.blog-callout__ico { flex: 0 0 auto; width: 24px; height: 24px; }
.blog-callout p { margin: 0; }
.blog-checklist { list-style: none; padding: 0; }
.blog-checklist li { position: relative; padding-left: 36px; }
.blog-checklist li::before { content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 6px; background: var(--green); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat; }
.blog-figph { margin: 24px 0 0; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.blog-figph__media { height: 240px; background: linear-gradient(135deg, #e3fbfc, #b9eef0); position: relative; }
.blog-figph__cap { font-size: 13px; color: var(--muted); padding: 12px 16px; }
.blog-article-foot { max-width: 720px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.blog-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-pill { font-size: 13px; color: #444; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px 14px; }
.blog-share { display: flex; gap: 10px; }
.blog-share a, .blog-share button { width: 38px; height: 38px; padding: 0; background: transparent; border: 1px solid var(--line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: inherit; transition: border-color var(--fast), color var(--fast); }
.blog-share a:hover, .blog-share button:hover { border-color: var(--ink); color: var(--ink); }
.blog-share a:focus-visible, .blog-share button:focus-visible { outline: 2px solid var(--cobalt); outline-offset: 2px; }
.blog-share svg, .blog-share img { width: 18px; height: 18px; display: block; }
.blog-authorbox { max-width: 720px; margin-top: 36px; display: flex; gap: 18px; align-items: flex-start; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 24px 36px; }
.blog-authorbox .blog-avatar { width: 56px; height: 56px; }
.blog-authorbox h4 { margin: 0; font-size: 16px; }
.blog-authorbox p { margin-top: 6px; font-size: 14px; color: #555; }

@media (max-width: 640px) {
  .blog-layout { padding-top: 32px; }
  .prose { font-size: 16px; line-height: 1.68; overflow-wrap: break-word; }
  .prose > * + * { margin-top: 20px; }
  .prose h2 { margin-top: 40px; }
  .prose h3 { font-size: 19px; margin-top: 28px; }
  .prose blockquote { margin-top: 24px; padding-left: 18px; font-size: 18px; line-height: 1.45; }
  .prose figure.code { margin: 20px -24px 0; border-radius: 0; border-left: 0; border-right: 0; }
  .prose > pre { margin-top: 20px; }
  .prose pre { font-size: 13px; padding: 16px 18px; }
  .prose ul, .prose ol { padding-left: 20px; }
  .blog-article-head .lede { margin-top: 16px; }
  .blog-byline { margin-top: 24px; }
  .blog-authorbox { flex-direction: column; gap: 14px; padding: 20px 28px; }
}
