/* ============================================================
   Technetix — Interactive Solutions for Education & Business
   ============================================================ */

:root {
  /* brand */
  --ink-900: #10143a;
  --ink-800: #151a40;
  --ink-700: #1e2454;
  --violet: #6c5ce7;       /* primary */
  --violet-2: #8b7bff;
  --accent: #00d1b2;       /* teal tick */
  --accent-2: #ff7a59;     /* coral */
  --blue: #4c6fff;

  /* neutrals */
  --body: #4a5169;
  --muted: #6b7290;
  --line: #e7e8f2;
  --paper: #ffffff;
  --tint: #f5f5fb;
  --tint-2: #eef0f9;

  /* type */
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* shape */
  --radius: 20px;
  --radius-sm: 13px;
  --shadow-sm: 0 2px 14px rgba(21, 26, 64, .06);
  --shadow: 0 24px 55px -22px rgba(21, 26, 64, .28);
  --shadow-lg: 0 45px 90px -30px rgba(21, 26, 64, .4);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink-900); line-height: 1.12; font-weight: 600; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--violet); color: #fff; }

.grad { background: linear-gradient(115deg, var(--violet), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- layout ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 4vw, 2rem); }
.section--tint { max-width: none; background: linear-gradient(180deg, var(--tint), var(--tint-2)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--tint > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section--dark {
  max-width: none;
  background:
    radial-gradient(1100px 500px at 82% -10%, rgba(108,92,231,.4), transparent 60%),
    radial-gradient(900px 500px at 8% 115%, rgba(255,122,89,.28), transparent 55%),
    var(--ink-900);
  color: #c3c8e6;
}
.section--dark > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section--dark .section__title { color: #fff; }
.section--dark .section__lead { color: #a7aed3; }

.section__head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__title { font-size: clamp(2rem, 4.6vw, 3.1rem); margin: 0.9rem 0 1rem; }
.section__lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); }

.eyebrow { display: inline-block; font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--violet); }
.eyebrow--light { color: var(--violet-2); }

/* ---------- buttons ---------- */
.btn {
  --pad-y: .8rem; --pad-x: 1.35rem;
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: var(--pad-y) var(--pad-x); border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn--lg { --pad-y: 1rem; --pad-x: 1.7rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--primary { background: linear-gradient(120deg, var(--violet), var(--blue)); color: #fff; box-shadow: 0 12px 30px -10px rgba(108,92,231,.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -12px rgba(108,92,231,.75); }
.btn--ghost { background: rgba(255,255,255,.07); color: #fff; border-color: rgba(255,255,255,.3); }
.btn--ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

/* ---------- scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--violet), var(--accent-2)); z-index: 100; transition: width .1s linear; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 90; transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); background: transparent; border-bottom: 1px solid transparent; }
.nav.is-solid { background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(14px); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; padding: 1rem clamp(1.25rem, 4vw, 2rem); }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; letter-spacing: -0.02em; }
.brand__mark { width: 32px; height: 32px; color: #fff; flex-shrink: 0; }
.brand__hl { color: var(--violet-2); }
.nav.is-solid .brand { color: var(--ink-900); }
.nav.is-solid .brand__mark { color: var(--violet); }
.nav.is-solid .brand__hl { color: var(--violet); }

.nav__links { display: flex; gap: 1.9rem; margin-left: auto; }
.nav__links a { font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.85); position: relative; padding: .3rem 0; transition: color .25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--accent); transition: width .3s var(--ease); }
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
.nav.is-solid .nav__links a { color: var(--body); }
.nav.is-solid .nav__links a:hover { color: var(--ink-900); }

.nav__cta { margin-left: .3rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.nav__burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav.is-solid .nav__burger span { background: var(--ink-900); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; gap: .3rem; padding: 0 clamp(1.25rem, 4vw, 2rem); max-height: 0; overflow: hidden; background: rgba(255,255,255,.97); backdrop-filter: blur(14px); transition: max-height .4s var(--ease), padding .4s var(--ease); }
.nav__mobile.is-open { max-height: 440px; padding: .5rem clamp(1.25rem,4vw,2rem) 1.5rem; }
.nav__mobile a { padding: .85rem .2rem; color: var(--ink-900); font-weight: 500; border-bottom: 1px solid var(--line); font-family: var(--font-display); }
.nav__mobile a.btn { border: 0; margin-top: .8rem; justify-content: center; color: #fff; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink-900); color: #fff; margin-top: -74px; padding-top: 74px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 78%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.hero__glow--1 { width: 560px; height: 560px; top: -180px; right: -120px; background: radial-gradient(circle, rgba(108,92,231,.7), transparent 68%); }
.hero__glow--2 { width: 620px; height: 620px; bottom: -300px; left: -160px; background: radial-gradient(circle, rgba(255,122,89,.45), transparent 68%); }

.hero__inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 2rem) clamp(4rem, 8vw, 6rem); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.pill { display: inline-flex; align-items: center; gap: .55rem; font-size: .82rem; font-weight: 500; padding: .45rem .9rem; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); color: #dde0f5; }
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(0,209,178,.7); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,209,178,.6);} 70% { box-shadow: 0 0 0 10px rgba(0,209,178,0);} 100% { box-shadow: 0 0 0 0 rgba(0,209,178,0);} }

.hero__title { font-size: clamp(2.5rem, 5.4vw, 4.2rem); color: #fff; margin: 1.5rem 0 1.3rem; font-weight: 700; }
.hero__sub { max-width: 560px; font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: #aab0d4; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.1rem; }
.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 2.2rem; border-top: 1px solid rgba(255,255,255,.12); }
.stat__num { font-family: var(--font-display); font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.stat__label { font-size: .82rem; color: #8f97c1; margin-top: .3rem; line-height: 1.4; }

/* hero panel mockup */
.hero__visual { position: relative; justify-self: center; width: 100%; max-width: 460px; }
.panel { position: relative; }
.panel__bezel { background: linear-gradient(160deg, #2a3170, #171c46); border-radius: 18px; padding: 14px; box-shadow: var(--shadow-lg); }
.panel__screen { background: linear-gradient(160deg, #fbfbff, #eef0fb); border-radius: 8px; aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.panel__toolbar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: rgba(108,92,231,.08); border-bottom: 1px solid rgba(108,92,231,.12); }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot--r { background: #ff6b6b; } .dot--y { background: #ffce54; } .dot--g { background: #2ecc71; }
.panel__title { margin-left: auto; font-family: var(--font-display); font-size: .72rem; font-weight: 600; color: var(--violet); letter-spacing: .04em; }
.panel__ink { position: absolute; inset: 0; width: 100%; height: 100%; padding: 10px; }
.panel__ink .ink { fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 600; stroke-dashoffset: 600; }
.ink--1 { stroke: var(--violet); stroke-width: 5; animation: draw 2.6s var(--ease) .3s forwards; }
.ink--2 { stroke: var(--accent-2); stroke-width: 5; animation: draw 2.6s var(--ease) 1s forwards; }
.ink--3 { stroke: var(--accent); stroke-width: 5; animation: draw 2.6s var(--ease) 1.6s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.panel__cursor { position: absolute; width: 16px; height: 16px; border-radius: 50%; background: rgba(108,92,231,.35); border: 2px solid var(--violet); top: 60%; left: 30%; animation: cursorMove 5s ease-in-out infinite; }
@keyframes cursorMove { 0%{top:60%;left:20%;} 25%{top:35%;left:55%;} 50%{top:65%;left:70%;} 75%{top:40%;left:35%;} 100%{top:60%;left:20%;} }
.panel__stand { width: 34%; height: 20px; margin: 0 auto; background: linear-gradient(180deg, #2a3170, #171c46); border-radius: 0 0 10px 10px; box-shadow: 0 14px 24px -14px rgba(0,0,0,.5); }
.panel__stand::after { content: ""; display: block; width: 150%; height: 8px; margin: 8px 0 0 -25%; background: linear-gradient(180deg, #232a5e, #171c46); border-radius: 8px; }

.floatcard { position: absolute; display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-display); font-weight: 600; font-size: .8rem; color: var(--ink-900); background: #fff; padding: .5rem .8rem; border-radius: 12px; box-shadow: var(--shadow); }
.floatcard span { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 6px; background: rgba(108,92,231,.14); color: var(--violet); }
.floatcard--1 { top: 8%; left: -26px; animation: float 4s ease-in-out infinite; }
.floatcard--2 { bottom: 16%; right: -22px; animation: float 4.6s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- brands strip ---------- */
.trust { background: var(--ink-800); color: #fff; text-align: center; padding: 2.3rem clamp(1.25rem,4vw,2rem); }
.trust__label { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: #7f88b5; margin-bottom: 1rem; font-family: var(--font-display); font-weight: 500; }
.trust__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem 1.6rem; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem,2.6vw,1.7rem); color: #eceefb; letter-spacing: .02em; }
.trust__sep { color: var(--violet-2); }

/* ---------- solutions ---------- */
.solutions { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.solution { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.solution::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--violet), var(--blue)); }
.solution:nth-child(2)::after { background: linear-gradient(90deg, var(--accent-2), #ffb199); }
.solution:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.solution__tag { display: inline-block; font-family: var(--font-display); font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--violet); background: rgba(108,92,231,.1); padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1rem; }
.solution__tag--alt { color: var(--accent-2); background: rgba(255,122,89,.12); }
.solution h3 { font-size: 1.55rem; margin-bottom: .7rem; }
.solution p { color: var(--muted); margin-bottom: 1.3rem; }

.ticks { list-style: none; display: grid; gap: .6rem; }
.ticks li { position: relative; padding-left: 1.9rem; font-size: .96rem; color: var(--body); }
.ticks li::before { content: ""; position: absolute; left: 0; top: .15em; width: 20px; height: 20px; border-radius: 6px; background: rgba(0,209,178,.14); }
.ticks li::after { content: ""; position: absolute; left: 6px; top: .42em; width: 8px; height: 5px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }

/* ---------- products ---------- */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.product { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.product::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, var(--violet), var(--accent-2)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s var(--ease); }
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product:hover::before { opacity: 1; }
.product__ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1.2rem; background: linear-gradient(135deg, rgba(108,92,231,.15), rgba(76,111,255,.15)); color: var(--violet); }
.product__ico svg { width: 27px; height: 27px; }
.product h3 { font-size: 1.25rem; margin-bottom: .55rem; }
.product p { font-size: .96rem; color: var(--muted); }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.features .feature { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.8rem; transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease); }
.features .feature:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); border-color: rgba(108,92,231,.5); }
.feature__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff; background: linear-gradient(135deg, var(--violet), var(--blue)); margin-bottom: 1.1rem; }
.features .feature h3 { color: #fff; font-size: 1.15rem; margin-bottom: .45rem; }
.features .feature p { font-size: .94rem; color: #a7aed3; }

/* ---------- why / process ---------- */
.why { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.why__intro { position: sticky; top: 100px; }
.why__intro .btn { margin-top: 1.6rem; }
.process { list-style: none; display: grid; gap: 1rem; }
.process__step { display: flex; gap: 1.2rem; background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.6rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease); }
.process__step:hover { transform: translateX(6px); box-shadow: var(--shadow); background: #fff; }
.process__num { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #fff; background: linear-gradient(135deg, var(--violet), var(--blue)); width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.process__step:nth-child(even) .process__num { background: linear-gradient(135deg, var(--accent-2), #ffb199); }
.process__step h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.process__step p { font-size: .95rem; color: var(--muted); }

/* ---------- quote ---------- */
.quote { background: var(--ink-800); color: #fff; padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 4vw, 2rem); position: relative; overflow: hidden; }
.quote::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 300px at 50% 0%, rgba(108,92,231,.28), transparent 65%); }
.quote__inner { position: relative; max-width: 850px; margin: 0 auto; text-align: center; }
.quote__mark { width: 46px; height: 46px; color: var(--violet-2); margin: 0 auto 1.4rem; }
.quote__text { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 3.2vw, 2.15rem); line-height: 1.4; color: #fff; letter-spacing: -0.01em; }
.quote__author { margin-top: 1.6rem; color: var(--violet-2); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-size: .82rem; font-family: var(--font-display); }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__list { list-style: none; margin-top: 2rem; display: grid; gap: 1.1rem; }
.contact__list li { display: flex; align-items: flex-start; gap: .9rem; font-size: 1rem; color: var(--body); line-height: 1.5; }
.contact__ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--tint-2); color: var(--violet); font-size: 1.05rem; flex-shrink: 0; }
.contact__list a:hover { color: var(--violet); }

.contact__form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-900); margin-bottom: .4rem; font-family: var(--font-display); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: .98rem; color: var(--ink-900); padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--tint); transition: border-color .25s, background .25s, box-shadow .25s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet); background: #fff; box-shadow: 0 0 0 4px rgba(108,92,231,.14); }
.field textarea { resize: vertical; }
.contact__note { margin-top: 1rem; font-size: .9rem; text-align: center; min-height: 1.2em; }
.contact__note.is-ok { color: var(--accent); font-weight: 600; }
.contact__note.is-err { color: #e0483d; }

/* ---------- footer ---------- */
.footer { background: var(--ink-900); color: #a7aed3; padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 2rem) 2rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.brand--light { color: #fff; margin-bottom: 1rem; }
.brand--light .brand__mark { color: #fff; }
.footer__brand p { font-size: .95rem; max-width: 34ch; }
.footer__col h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer__col a, .footer__col p { display: block; font-size: .93rem; color: #a7aed3; padding: .32rem 0; transition: color .2s; }
.footer__col a:hover { color: var(--violet-2); }
.footer__bar { max-width: var(--maxw); margin: 2.5rem auto 0; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; font-size: .85rem; color: #7f88b5; }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { grid-row: 1; max-width: 400px; margin-bottom: .5rem; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; }
  .why__intro { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 820px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; }
  .solutions { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .products, .features { grid-template-columns: 1fr; }
  .field--split { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  .floatcard--1 { left: -6px; } .floatcard--2 { right: -6px; }
}
@media (max-width: 440px) {
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  .panel__ink .ink { stroke-dashoffset: 0; }
}
