/* ==========================================================================
   CloudWorks — Cape Digital Solutions
   Modern light theme stylesheet
   ========================================================================== */

/* --------------------------------------------------------------- 1. Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, a, img, ul, ol,
li, figure, figcaption, table, thead, tbody, tr, th, td, form, fieldset, legend {
  margin: 0; padding: 0; border: 0; font: inherit; vertical-align: baseline;
}
ul, ol { list-style: none; }
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
table { border-collapse: collapse; border-spacing: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* -------------------------------------------------------------- 2. Tokens */
:root {
  /* brand */
  --brand:        #EF3B24;
  --brand-600:    #D92C16;
  --brand-700:    #B62310;
  --brand-soft:   #FFF1EE;
  --sky:          #0EA5E9;
  --sky-600:      #0284C7;
  --sky-soft:     #ECFAFF;
  --violet:       #6366F1;

  /* neutrals */
  --ink:          #0B1220;
  --ink-2:        #1E293B;
  --body:         #4A5568;
  --muted:        #7A8699;
  --line:         #E6EAF0;
  --line-2:       #F0F3F7;
  --bg:           #FFFFFF;
  --bg-soft:      #F7F9FC;
  --bg-soft-2:    #F1F5F9;

  /* effects */
  --radius:       18px;
  --radius-sm:    12px;
  --radius-lg:    28px;
  --shadow-xs:    0 1px 2px rgba(11,18,32,.05);
  --shadow-sm:    0 2px 8px rgba(11,18,32,.05), 0 1px 2px rgba(11,18,32,.04);
  --shadow:       0 12px 30px -12px rgba(11,18,32,.16), 0 2px 8px rgba(11,18,32,.04);
  --shadow-lg:    0 32px 64px -24px rgba(11,18,32,.24), 0 8px 20px -12px rgba(11,18,32,.10);
  --glow-brand:   0 14px 30px -12px rgba(239,59,36,.55);

  --grad-brand:   linear-gradient(135deg, #FF6A3D 0%, #EF3B24 55%, #D92C16 100%);
  --grad-sky:     linear-gradient(135deg, #38BDF8 0%, #0EA5E9 55%, #0369A1 100%);
  --grad-ink:     linear-gradient(135deg, #1E293B 0%, #0B1220 100%);

  --font-head:    'Quicksand', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --wrap:         1180px;
  --header-h:     92px;
}

/* ---------------------------------------------------------------- 3. Base */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.1rem, 1.35rem + 2.6vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 1.2rem + 1.7vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.4rem); }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--ink-2); }
em { font-style: italic; }
small { font-size: .85em; }
::selection { background: rgba(239,59,36,.16); color: var(--ink); }

:focus-visible {
  outline: 3px solid rgba(14,165,233,.55);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  z-index: 200; background: var(--ink); color: #fff;
  padding: 12px 22px; border-radius: 0 0 12px 12px; font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ------------------------------------------------------------ 4. Utilities */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 40px, 860px); margin-inline: auto; }

.section { padding: clamp(56px, 6vw, 100px) 0; position: relative; }
.section--tight { padding: clamp(40px, 4vw, 64px) 0; }
.section--soft { background: var(--bg-soft); }
.section--line { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--grad-brand);
}
.eyebrow--sky { color: var(--sky-600); }
.eyebrow--sky::before { background: var(--grad-sky); }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 54px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.05rem; margin-top: 14px; color: var(--body); }

.lead { font-size: clamp(1.02rem, .98rem + .3vw, 1.18rem); color: var(--body); }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }

/* ------------------------------------------------------------- 5. Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  font-family: var(--font-body); font-size: .94rem; font-weight: 600;
  letter-spacing: .005em; white-space: nowrap;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s ease,
              background-color .22s ease, color .22s ease, border-color .22s ease;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--glow-brand); }
.btn--primary:hover { box-shadow: 0 20px 38px -14px rgba(239,59,36,.62); }

.btn--dark { background: var(--ink); color: #fff; box-shadow: 0 14px 28px -14px rgba(11,18,32,.6); }
.btn--dark:hover { background: var(--ink-2); }

.btn--ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-xs); }
.btn--ghost:hover { border-color: #CBD5E1; box-shadow: var(--shadow-sm); }

.btn--soft { background: var(--brand-soft); color: var(--brand-700); }
.btn--soft:hover { background: #FFE3DE; }

.btn--sky { background: var(--grad-sky); color: #fff; box-shadow: 0 14px 30px -12px rgba(14,165,233,.55); }

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: .85rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; color: var(--brand); font-size: .93rem;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .22s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------- 6. Chips */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: 999px;
  font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  background: var(--bg-soft-2); color: var(--ink-2);
  border: 1px solid var(--line);
}
.chip--brand { background: var(--brand-soft); color: var(--brand-700); border-color: #FFD9D2; }
.chip--sky   { background: var(--sky-soft);  color: var(--sky-600);   border-color: #C9EEFC; }
.chip--eol   { background: #FEF3C7;          color: #92400E;          border-color: #FDE68A; }
.chip--new   { background: #ECFDF5;          color: #047857;          border-color: #A7F3D0; }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }

.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; }

/* -------------------------------------------------------------- 7. Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.site-header::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: var(--grad-brand);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -14px rgba(11,18,32,.22);
  background: rgba(255,255,255,.94);
}

.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 26px;
}

.brand { display: flex; align-items: center; flex: none; padding: 12px 0; }
.brand img { width: 200px; height: auto; transition: transform .3s ease; }
.brand:hover img { transform: scale(1.03); }

.nav { margin-left: auto; }
.nav > ul { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }

.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 10px;
  font-size: .93rem; font-weight: 600; color: var(--ink-2);
  transition: color .2s ease, background-color .2s ease;
}
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--brand); background: var(--brand-soft); }
.nav-link[aria-current="page"] { color: var(--brand); }
.nav-link .caret { width: 10px; height: 10px; transition: transform .25s ease; opacity: .6; }
.nav-item:hover > .nav-link .caret { transform: rotate(180deg); }

/* dropdown */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translate(-50%, 10px);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 14px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .24s cubic-bezier(.22,1,.36,1), visibility .2s;
  z-index: 10;
}
.dropdown::before {
  content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.dropdown--simple { width: 268px; }
.dropdown--mega { width: min(92vw, 880px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px 14px; padding: 22px; }
.dropdown--mega.dropdown--right { left: auto; right: 0; transform: translate(0, 10px); }
.nav-item:hover > .dropdown--mega.dropdown--right,
.nav-item:focus-within > .dropdown--mega.dropdown--right { transform: translate(0, 0); }

.dd-col-title {
  font-family: var(--font-body);
  font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); padding: 6px 12px 8px;
}
.dd-link {
  display: flex; flex-direction: column; gap: 2px;
  padding: 9px 12px; border-radius: 10px;
  font-size: .88rem; font-weight: 600; color: var(--ink-2);
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.dd-link span { font-size: .76rem; font-weight: 500; color: var(--muted); line-height: 1.4; }
.dd-link:hover { background: var(--bg-soft); color: var(--brand); transform: translateX(2px); }
.dd-link:hover span { color: var(--body); }
.dd-link.is-eol span { color: #B45309; }

.dd-feature {
  grid-column: span 1;
  background: linear-gradient(160deg, #FFF6F4 0%, #FFFFFF 100%);
  border: 1px solid #FFE1DB; border-radius: var(--radius-sm);
  padding: 16px;
}
.dd-feature h4 { font-family: var(--font-head); font-size: .98rem; margin-bottom: 6px; }
.dd-feature p { font-size: .78rem; color: var(--body); margin-bottom: 12px; line-height: 1.5; }

.header-cta { flex: none; display: flex; align-items: center; gap: 10px; }
.nav-mobile-cta { display: none; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff;
  align-items: center; justify-content: center; flex: none;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink);
  position: relative; transition: background-color .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  border-radius: 2px; background: var(--ink); transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------------------------------------------------------------- 8. Hero */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 6vw, 96px) 0 clamp(56px, 6vw, 90px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(680px 460px at 8% -10%, rgba(239,59,36,.13), transparent 62%),
    radial-gradient(720px 520px at 96% 4%, rgba(14,165,233,.16), transparent 60%),
    radial-gradient(560px 420px at 60% 108%, rgba(99,102,241,.10), transparent 62%),
    linear-gradient(180deg, #FDFEFF 0%, #F5F9FD 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(rgba(11,18,32,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,18,32,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(closest-side at 50% 40%, #000 55%, transparent 100%);
  mask-image: radial-gradient(closest-side at 50% 40%, #000 55%, transparent 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 4vw, 64px); align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .grad {
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero .lead { max-width: 56ch; margin-bottom: 28px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 8px; border-radius: 999px;
  background: rgba(255,255,255,.8); border: 1px solid var(--line);
  box-shadow: var(--shadow-xs); margin-bottom: 22px;
  font-size: .8rem; font-weight: 600; color: var(--ink-2);
}
.hero-badge b {
  background: var(--grad-brand); color: #fff; font-weight: 700;
  padding: 3px 11px; border-radius: 999px; font-size: .72rem; letter-spacing: .04em;
}

.hero-visual { position: relative; }
.hero-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 14px; overflow: hidden;
}
.hero-card img { border-radius: 20px; width: 100%; }

/* product variant: a cut-out product photo on a soft panel rather than a full-bleed screenshot */
.hero-card--product {
  background: linear-gradient(160deg, #FFFFFF 0%, #F3F7FB 100%);
  display: grid; place-items: center; padding: 26px;
}
.hero-card--product img {
  width: auto; max-width: 100%; max-height: 360px;
  border-radius: 0; margin-inline: auto;
  filter: drop-shadow(0 18px 26px rgba(11,18,32,.16));
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); z-index: -1; opacity: .85; }
.hero-orb--a { width: 190px; height: 190px; top: -46px; right: -40px; background: radial-gradient(circle at 30% 30%, #FFB199, #EF3B24); opacity: .18; }
.hero-orb--b { width: 230px; height: 230px; bottom: -70px; left: -60px; background: radial-gradient(circle at 30% 30%, #7DD3FC, #0284C7); opacity: .16; }

.hero-float {
  position: absolute; background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 12px 16px;
  display: flex; align-items: center; gap: 11px;
  animation: floaty 6s ease-in-out infinite;
}
.hero-float .ico {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  display: grid; place-items: center; color: #fff;
}
.hero-float strong { display: block; font-size: .9rem; line-height: 1.25; color: var(--ink); }
.hero-float span { font-size: .72rem; color: var(--muted); }
.hero-float--one { left: -26px; bottom: 46px; }
.hero-float--one .ico { background: var(--grad-sky); }
.hero-float--two { right: -18px; top: 24px; animation-delay: -3s; }
.hero-float--two .ico { background: var(--grad-brand); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-11px); }
}

/* stat strip */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; margin-top: clamp(38px, 4vw, 60px);
  box-shadow: var(--shadow-sm);
}
.stat { background: #fff; padding: 24px 22px; text-align: center; }
.stat b {
  display: block; font-family: var(--font-head); font-size: clamp(1.5rem, 1.2rem + 1vw, 2.05rem);
  font-weight: 700; color: var(--ink); line-height: 1.1;
}
.stat span { font-size: .82rem; color: var(--muted); font-weight: 500; }

/* ---------------------------------------------------- 9. Page hero (inner) */
.page-hero { position: relative; padding: clamp(40px, 4.5vw, 68px) 0 clamp(34px, 4vw, 52px); overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(620px 340px at 6% 0%, rgba(239,59,36,.10), transparent 60%),
    radial-gradient(620px 380px at 98% 10%, rgba(14,165,233,.13), transparent 58%),
    linear-gradient(180deg, #FCFDFF 0%, #F6F9FC 100%);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 68ch; }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .8rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); transition: color .18s ease; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb [aria-current] { color: var(--ink-2); font-weight: 600; }

/* ------------------------------------------------------- 10. Product hero */
.product-hero { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.product-shot {
  position: relative; display: grid; place-items: center;
  background: linear-gradient(160deg, #FFFFFF 0%, #F3F7FB 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 30px; overflow: hidden;
}
.product-shot::before {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,.16), transparent 70%);
  top: -80px; right: -80px;
}
.product-shot::after {
  content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,59,36,.12), transparent 70%);
  bottom: -90px; left: -70px;
}
.product-shot img { position: relative; z-index: 1; max-height: 420px; width: auto; filter: drop-shadow(0 26px 34px rgba(11,18,32,.16)); }

.eol-banner {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(120deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1px solid #FDE68A; color: #92400E;
  border-radius: var(--radius); padding: 16px 22px; margin-bottom: 30px;
  font-size: .92rem; font-weight: 600;
}
.eol-banner svg { width: 22px; height: 22px; flex: none; }

/* -------------------------------------------------------------- 11. Cards */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-xs);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #DCE3EC; }
.card:hover::after { transform: scaleX(1); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .94rem; }
.card--sky::after { background: var(--grad-sky); }
.card--flat::after { display: none; }
.card--pad-sm { padding: 22px; }

.card-ico {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 18px;
  display: grid; place-items: center; color: #fff; flex: none;
  background: var(--grad-brand); box-shadow: var(--glow-brand);
}
.card-ico svg { width: 24px; height: 24px; }
.card-ico--sky { background: var(--grad-sky); box-shadow: 0 12px 26px -12px rgba(14,165,233,.55); }
.card-ico--ink { background: var(--grad-ink); box-shadow: 0 12px 26px -12px rgba(11,18,32,.5); }

/* product card */
.prod-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.prod-card .prod-media {
  background: linear-gradient(160deg, #F8FBFE 0%, #EEF4FA 100%);
  padding: 26px; display: grid; place-items: center; border-bottom: 1px solid var(--line-2);
}
.prod-card .prod-media img { max-height: 176px; width: auto; filter: drop-shadow(0 16px 22px rgba(11,18,32,.14)); transition: transform .35s cubic-bezier(.22,1,.36,1); }
.prod-card:hover .prod-media img { transform: translateY(-5px) scale(1.03); }
.prod-card .prod-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.prod-card .prod-body h3 { font-size: 1.12rem; margin-bottom: 6px; }
.prod-card .prod-code { font-size: .74rem; font-weight: 700; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; margin-bottom: 10px; }
.prod-card .prod-body p { font-size: .88rem; margin-bottom: 16px; }
.prod-card .prod-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-2); }

/* ------------------------------------------------------- 12. Feature tabs */
.showcase { display: grid; grid-template-columns: 380px 1fr; gap: clamp(24px, 3vw, 48px); align-items: start; }
.showcase-tabs { display: flex; flex-direction: column; gap: 10px; }
.showcase-tab {
  display: flex; align-items: flex-start; gap: 14px; width: 100%; text-align: left;
  padding: 18px 20px; border-radius: var(--radius-sm);
  border: 1px solid transparent; background: transparent;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
  position: relative;
}
.showcase-tab .n {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  font-size: .78rem; font-weight: 700; font-family: var(--font-head);
  background: var(--bg-soft-2); color: var(--muted); transition: all .25s ease;
}
.showcase-tab b { display: block; font-family: var(--font-head); font-size: 1.02rem; color: var(--ink); margin-bottom: 2px; }
.showcase-tab span { font-size: .85rem; color: var(--muted); display: block; line-height: 1.5; }
.showcase-tab:hover { background: var(--bg-soft); }
.showcase-tab[aria-selected="true"] {
  background: #fff; border-color: var(--line); box-shadow: var(--shadow);
}
.showcase-tab[aria-selected="true"] .n { background: var(--grad-brand); color: #fff; box-shadow: var(--glow-brand); }
.showcase-tab[aria-selected="true"] span { color: var(--body); }

.showcase-panels { position: relative; }
.showcase-panel { display: none; }
.showcase-panel.is-active { display: block; animation: fadeUp .45s cubic-bezier(.22,1,.36,1) both; }
.showcase-panel .pane-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.showcase-panel .pane-card img { width: 100%; }
.showcase-panel .pane-body { padding: 26px 30px 30px; }
.showcase-panel .pane-body h3 { margin-bottom: 12px; font-size: 1.3rem; }
.showcase-panel .pane-body p { font-size: .96rem; }

/* code sample used in place of an image in a showcase panel */
.code-visual {
  background: linear-gradient(160deg, #0B1220 0%, #16233A 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.code-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.code-bar i { width: 10px; height: 10px; border-radius: 50%; background: #334155; flex: none; }
.code-bar i:first-child { background: #EF3B24; }
.code-bar i:nth-child(2) { background: #F59E0B; }
.code-bar i:nth-child(3) { background: #10B981; }
.code-bar b {
  margin-left: 8px; font-family: var(--font-body); font-size: .72rem;
  font-weight: 600; letter-spacing: .05em; color: #64748B; text-transform: uppercase;
}
.code-visual pre {
  margin: 0; padding: 22px 20px 24px; overflow-x: auto;
  font-family: "Cascadia Code", Consolas, "SF Mono", Menlo, monospace;
  font-size: .8rem; line-height: 1.75; color: #CBD5E1;
  -webkit-overflow-scrolling: touch;
}
.code-visual code { white-space: pre; }
.code-visual .c-cmd { color: #7DD3FC; font-weight: 600; }
.code-visual .c-str { color: #86EFAC; }
.code-visual .c-fn  { color: #FDBA74; font-weight: 600; }
.code-visual .c-prm { color: #A5B4FC; }
.code-visual .c-val { color: #FCA5A5; }
.code-visual .c-com { color: #64748B; font-style: italic; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------------- 13. Spec lists */
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 34px; }
.spec-list li, .check-list li {
  position: relative; padding: 9px 0 9px 30px;
  font-size: .93rem; border-bottom: 1px solid var(--line-2);
}
.spec-list li:last-child, .check-list li:last-child { border-bottom: 0; }
.spec-list li::before, .check-list li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EF3B24' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.check-list--sky li::before {
  background-color: var(--sky-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230EA5E9' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.check-list li strong { display: block; }

.feature-list { display: grid; gap: 14px; }
.feature-item {
  display: flex; gap: 16px; padding: 20px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xs);
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease, border-color .28s ease;
}
.feature-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: #DCE3EC; }
.feature-item .fi-ico {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand);
}
.feature-item .fi-ico svg { width: 17px; height: 17px; }
.feature-item p { font-size: .92rem; margin: 0; }
.feature-item p b { color: var(--ink); }

/* mini spec pills under product hero */
.spec-pills { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 26px 0 0; }
.spec-pill {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; box-shadow: var(--shadow-xs);
}
.spec-pill b { display: block; font-family: var(--font-head); font-size: 1.02rem; color: var(--ink); line-height: 1.25; }
.spec-pill span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }

/* --------------------------------------------------------- 14. Split rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 62px); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); background: #fff;
}
.split-media img { width: 100%; }
.figure-note { font-size: .78rem; color: var(--muted); text-align: center; padding: 12px 16px; border-top: 1px solid var(--line-2); background: var(--bg-soft); }

.wide-figure {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); background: #fff;
}
.wide-figure img { width: 100%; }
.wide-figure--scroll { overflow-x: auto; }
.wide-figure--scroll img { min-width: 760px; }

/* ---------------------------------------------------------- 15. Downloads */
.dl-card {
  display: flex; flex-direction: column; gap: 4px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; box-shadow: var(--shadow-xs);
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease, border-color .25s ease;
}
.dl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: #FFCFC6; }
.dl-head { display: flex; align-items: center; gap: 13px; }
.dl-ico {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  display: grid; place-items: center; background: var(--brand-soft); color: var(--brand);
}
.dl-ico svg { width: 19px; height: 19px; }
.dl-card b { font-size: .92rem; color: var(--ink); font-weight: 600; line-height: 1.35; }
.dl-card span { font-size: .76rem; color: var(--muted); }

.dl-list { display: grid; gap: 10px; }
.dl-row {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; border-radius: var(--radius-sm);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-xs);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.dl-row:hover { transform: translateX(4px); border-color: #FFCFC6; box-shadow: var(--shadow-sm); }
.dl-row .dl-ico { width: 34px; height: 34px; border-radius: 9px; }
.dl-row b { flex: 1; font-size: .9rem; font-weight: 600; color: var(--ink-2); }
.dl-row .dl-type { font-size: .7rem; font-weight: 700; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }

/* installer hero card */
.installer {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #0B1220 0%, #16233A 55%, #1E2E4A 100%);
  border-radius: var(--radius-lg); color: #E2E8F0;
  padding: clamp(30px, 4vw, 52px);
  box-shadow: var(--shadow-lg);
}
.installer::before {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,59,36,.34), transparent 65%);
  top: -190px; right: -140px;
}
.installer::after {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,.30), transparent 65%);
  bottom: -220px; left: -120px;
}
.installer > * { position: relative; z-index: 1; }
.installer h2 { color: #fff; margin-bottom: 14px; }
.installer p { color: #B6C2D4; }
.installer .eyebrow { color: #FF8A6E; }
.installer .eyebrow::before { background: linear-gradient(90deg, #FF8A6E, transparent); }
.installer-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(26px, 3vw, 48px); align-items: center; }
.installer-file {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 22px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.installer-file .file-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.installer-file .file-ico {
  width: 48px; height: 48px; border-radius: 13px; flex: none; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; box-shadow: var(--glow-brand);
}
.installer-file .file-ico svg { width: 23px; height: 23px; }
.installer-file b { display: block; color: #fff; font-size: .96rem; }
.installer-file .file-row span { font-size: .76rem; color: #8FA0B8; word-break: break-all; }
.installer-note { font-size: .8rem; color: #8FA0B8; margin-top: 14px; text-align: center; }

/* steps */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
  position: relative; display: flex; gap: 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; box-shadow: var(--shadow-xs);
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.step-n {
  counter-increment: step; flex: none;
  width: 42px; height: 42px; border-radius: 13px;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  background: var(--grad-brand); color: #fff; box-shadow: var(--glow-brand);
}
.step-n::before { content: counter(step); }
.step h3 { font-size: 1.08rem; margin-bottom: 7px; }
.step p { font-size: .93rem; }

/* legacy notice */
.legacy-box {
  background: var(--bg-soft); border: 1px dashed #CBD5E1;
  border-radius: var(--radius); padding: 26px 28px;
}
.legacy-box h3 { font-size: 1.08rem; margin-bottom: 8px; }
.legacy-box p { font-size: .9rem; }
.legacy-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.legacy-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); font-size: .84rem; font-weight: 600; color: var(--ink-2);
  transition: border-color .2s ease, color .2s ease;
}
.legacy-link:hover { border-color: #CBD5E1; color: var(--brand); }
.legacy-link svg { width: 15px; height: 15px; opacity: .6; }

/* ---------------------------------------------------------- 16. Callout / CTA */
.callout {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); padding: clamp(34px, 4vw, 62px);
  background: linear-gradient(135deg, #FFF7F5 0%, #FDF2F8 45%, #EFF9FF 100%);
  border: 1px solid #FFE3DC; text-align: center;
}
.callout::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .55;
  background-image:
    linear-gradient(rgba(11,18,32,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,18,32,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(closest-side at 50% 50%, #000 40%, transparent 100%);
  mask-image: radial-gradient(closest-side at 50% 50%, #000 40%, transparent 100%);
}
.callout > * { position: relative; z-index: 1; }
.callout h2 { margin-bottom: 14px; }
.callout p { max-width: 62ch; margin-inline: auto; margin-bottom: 26px; font-size: 1.02rem; }

.note {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--sky-soft); border: 1px solid #C9EEFC;
  border-radius: var(--radius-sm); padding: 16px 20px;
  font-size: .89rem; color: #0C4A6E;
}
.note svg { width: 19px; height: 19px; flex: none; margin-top: 3px; }
.note--warn { background: #FFFBEB; border-color: #FDE68A; color: #92400E; }
.note--brand { background: var(--brand-soft); border-color: #FFD9D2; color: var(--brand-700); }
.note p { margin: 0; }
.note a { text-decoration: underline; font-weight: 600; }

/* --------------------------------------------------------- 17. Prose/legal */
.prose { font-size: .97rem; }
.prose h2 { margin: 40px 0 14px; font-size: 1.5rem; }
.prose h3 { margin: 32px 0 12px; font-size: 1.18rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 0 0 1.2rem; display: grid; gap: 4px; }
.prose ul li { position: relative; padding-left: 24px; }
.prose ul li::before {
  content: ""; position: absolute; left: 4px; top: 12px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
}
.prose a { color: var(--brand); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose .doc-meta {
  display: inline-flex; align-items: center; gap: 8px; font-size: .8rem;
  color: var(--muted); background: var(--bg-soft); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 26px;
}

/* -------------------------------------------------------- 18. Contact page */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(26px, 3vw, 48px); align-items: start; }
.contact-list { display: grid; gap: 14px; }
.contact-row {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px; box-shadow: var(--shadow-xs);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: #DCE3EC; }
.contact-row .c-ico {
  width: 40px; height: 40px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand);
}
.contact-row .c-ico svg { width: 19px; height: 19px; }
.contact-row span { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--muted); }
.contact-row b, .contact-row address { font-size: .96rem; color: var(--ink); font-weight: 600; font-style: normal; line-height: 1.55; }
.contact-row a:hover { color: var(--brand); }

.map-frame {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); background: var(--bg-soft);
}
.map-frame iframe { width: 100%; height: 460px; border: 0; display: block; }

/* -------------------------------------------------------------- 19. Footer */
.site-footer {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0B1220 0%, #131E33 100%);
  color: #94A3B8; padding: clamp(50px, 5vw, 76px) 0 0; margin-top: 0;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--grad-brand);
}
.site-footer::after {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,.12), transparent 65%);
  top: -220px; right: -160px;
}
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr 1fr 1fr 1.15fr; gap: 40px; }
.site-footer h3 {
  font-family: var(--font-body); color: #fff; font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-about p { font-size: .88rem; line-height: 1.7; color: #94A3B8; }
.footer-links { display: grid; gap: 11px; }
.footer-links a {
  font-size: .89rem; color: #94A3B8;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s ease, transform .2s ease;
}
.footer-links a::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: #475569; transition: background-color .2s ease;
}
.footer-links a:hover { color: #fff; transform: translateX(3px); }
.footer-links a:hover::before { background: var(--brand); }
.footer-contact { display: grid; gap: 12px; }
.footer-contact a, .footer-contact span {
  display: flex; align-items: flex-start; gap: 11px; font-size: .89rem; color: #94A3B8;
  transition: color .2s ease;
}
.footer-contact a:hover { color: #fff; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--brand); }
.footer-bottom {
  position: relative; z-index: 1;
  margin-top: clamp(38px, 4vw, 56px); padding: 22px 0 26px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  font-size: .82rem; color: #64748B;
}
.footer-bottom a { color: #94A3B8; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }

/* ------------------------------------------------------- 20. Scroll reveal */
/* Gated on .js so the page is fully legible if scripting is unavailable. */
.js [data-reveal] { opacity: 0; transform: translateY(22px); }
.js [data-reveal].is-visible {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.js [data-reveal][data-delay="1"].is-visible { transition-delay: .08s; }
.js [data-reveal][data-delay="2"].is-visible { transition-delay: .16s; }
.js [data-reveal][data-delay="3"].is-visible { transition-delay: .24s; }
.js [data-reveal][data-delay="4"].is-visible { transition-delay: .32s; }
.js [data-reveal][data-delay="5"].is-visible { transition-delay: .40s; }

/* back to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.to-top svg { width: 18px; height: 18px; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--brand); color: var(--brand); }

/* ---------------------------------------------------------- 21. Responsive */
@media (max-width: 1080px) {
  .dropdown--mega { grid-template-columns: repeat(3, 1fr); width: min(94vw, 720px); }
  .dd-feature { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 960px) {
  :root { --header-h: 78px; }
  .brand img { width: 168px; }
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }

  .nav {
    position: fixed; inset: var(--header-h) 0 auto; margin: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    padding: 14px 20px 26px;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .25s ease, transform .3s cubic-bezier(.22,1,.36,1), visibility .25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link { padding: 13px 12px; font-size: 1rem; justify-content: space-between; border-radius: 10px; }

  .dropdown, .dropdown--mega, .dropdown--mega.dropdown--right {
    position: static; width: auto; transform: none; opacity: 1; visibility: visible;
    pointer-events: auto; box-shadow: none; border: 0; border-radius: 0;
    padding: 0 0 10px 12px; display: none; grid-template-columns: 1fr;
  }
  .nav-item.is-open > .dropdown { display: grid; animation: fadeUp .3s ease both; }
  .nav-item:hover > .dropdown { display: none; }
  .nav-item.is-open:hover > .dropdown { display: grid; }
  .nav-item.is-open > .nav-link .caret { transform: rotate(180deg); }
  .dd-col-title { padding: 12px 12px 4px; }
  .dd-link span { display: none; }
  .nav-mobile-cta { display: block; margin-top: 16px; }

  .hero-grid, .product-hero, .split, .showcase, .installer-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .split--reverse .split-media { order: 0; }
  .hero-visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .hero-float--one { left: 6px; }
  .hero-float--two { right: 6px; }
  .showcase-tabs { flex-direction: row; overflow-x: auto; padding-bottom: 6px; gap: 8px; }
  .showcase-tab { flex: 0 0 auto; width: 250px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .spec-pills { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .wrap, .wrap-narrow { width: min(100% - 32px, var(--wrap)); }
  .grid-2, .grid-3, .grid-4, .spec-grid { grid-template-columns: 1fr; }
  .hero-float { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .step { flex-direction: column; gap: 14px; }
  .map-frame iframe { height: 340px; }
  .installer { padding: 28px 22px; }
  .to-top { right: 14px; bottom: 14px; }
}

@media print {
  .site-header, .site-footer, .to-top, .btn { display: none !important; }
  body { color: #000; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}
