:root {
  --ink: #1f2437;
  --ink-soft: #3c4257;
  --muted: #777d90;
  --line: #dce0e9;
  --paper: #f7f8fa;
  --white: #ffffff;
  --lilac: #ebe9ff;
  --lilac-deep: #d5d0ff;
  --blue: #def5fb;
  --blue-deep: #b7e9f8;
  --peach: #ffe8df;
  --coral: #ff7068;
  --coral-dark: #d95451;
  --navy: #252a45;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --shadow: 0 18px 50px rgba(32, 38, 63, 0.08);
  --shadow-strong: 0 28px 70px rgba(32, 38, 63, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(42, 47, 68, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(42, 47, 68, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
}

a { color: inherit; text-decoration: none; }

button, a { -webkit-tap-highlight-color: transparent; }

button:focus-visible, a:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.site-shell { max-width: 1440px; margin: 0 auto; padding: 0 54px; overflow: clip; }

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  min-height: 98px;
  gap: 32px;
  border-bottom: 1px solid rgba(220, 224, 233, 0.9);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 750; letter-spacing: -0.04em; }
.brand-name { font-size: 1.05rem; }
.brand-mark { display: grid; width: 42px; height: 42px; place-items: center; color: white; background: var(--navy); border-radius: 14px; box-shadow: 0 8px 20px rgba(37, 42, 69, 0.16); }
.brand-mark svg { width: 28px; height: 28px; }

.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; color: var(--muted); font-size: 0.9rem; }
.site-nav a { transition: color 180ms ease; }
.site-nav a:hover { color: var(--ink); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: 0.9rem; font-weight: 750; letter-spacing: -0.02em; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--coral); box-shadow: 0 12px 26px rgba(255, 112, 104, 0.26); }
.button-primary:hover { background: var(--coral-dark); box-shadow: 0 16px 30px rgba(255, 112, 104, 0.3); }
.button-dark { color: var(--white); background: var(--navy); }
.button-dark:hover { background: #171b32; box-shadow: 0 12px 25px rgba(37, 42, 69, 0.18); }
.button-light { color: var(--navy); background: var(--white); box-shadow: 0 12px 30px rgba(12, 16, 34, 0.16); }
.button-light:hover { background: #f1eeff; }
.button-small { min-height: 42px; padding: 0 17px; font-size: 0.82rem; }

.menu-toggle { display: none; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 99px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.hero { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr); align-items: center; gap: clamp(50px, 8vw, 120px); min-height: 720px; padding: 80px 0 110px; }
.hero-copy { max-width: 660px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 24px; color: var(--coral-dark); font-size: 0.73rem; font-weight: 800; letter-spacing: 0.2em; line-height: 1.3; text-transform: uppercase; }
.eyebrow-dot { display: inline-block; width: 8px; height: 8px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 5px rgba(255, 112, 104, 0.12); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 { max-width: 770px; margin-bottom: 32px; font-size: clamp(3.6rem, 7.2vw, 7.2rem); font-weight: 800; letter-spacing: -0.095em; line-height: 0.94; }
h1 em, h2 em { color: var(--coral); font-style: normal; }
.hero-lede { max-width: 520px; margin-bottom: 36px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: 0.92rem; font-weight: 700; border-bottom: 1px solid var(--line); transition: gap 180ms ease, color 180ms ease, border-color 180ms ease; }
.text-link:hover { gap: 13px; color: var(--coral-dark); border-color: var(--coral); }
.hero-caption { display: flex; flex-wrap: wrap; gap: 10px; margin: 68px 0 0; color: var(--muted); font-size: 0.79rem; }
.hero-caption span { color: var(--ink); font-weight: 750; }

.hero-art { position: relative; min-height: 555px; isolation: isolate; perspective: 900px; transition: transform 300ms ease-out; }
.art-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0.75; }
.art-glow-one { top: 8%; right: 10%; width: 330px; height: 330px; background: radial-gradient(circle, rgba(220, 211, 255, 0.95) 0%, rgba(220, 211, 255, 0) 68%); }
.art-glow-two { bottom: 3%; left: 5%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(183, 233, 248, 0.8) 0%, rgba(183, 233, 248, 0) 68%); }
.art-grid { position: absolute; inset: 7% 2% 5% 8%; border: 1px solid rgba(179, 180, 202, 0.7); border-radius: 42px; background-image: radial-gradient(rgba(84, 84, 116, 0.24) 1px, transparent 1px); background-size: 14px 14px; box-shadow: inset 0 0 0 12px rgba(255,255,255,0.26); }
.orbit { position: absolute; border: 1px solid rgba(255, 112, 104, 0.44); border-radius: 50%; }
.orbit-one { top: 5%; right: -4%; width: 350px; height: 350px; }
.orbit-two { right: 6%; bottom: 4%; width: 210px; height: 210px; border-color: rgba(89, 176, 202, 0.33); }
.lab-card { position: absolute; border: 1px solid rgba(44, 49, 76, 0.12); background: rgba(255, 255, 255, 0.82); box-shadow: var(--shadow-strong); backdrop-filter: blur(14px); }
.lab-card-main { top: 15%; left: 10%; width: min(83%, 510px); min-height: 390px; padding: 28px 30px; border-radius: 30px; transform: rotate(-2.8deg); animation: card-float 7s ease-in-out infinite; }
.card-topline, .card-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 0.7rem; font-weight: 750; letter-spacing: 0.07em; text-transform: uppercase; }
.micro-label { letter-spacing: 0.13em; }
.live-pill { display: inline-flex; align-items: center; gap: 7px; color: #4b946f; }
.live-pill span, .product-status span { display: inline-block; width: 7px; height: 7px; background: #5dbb87; border-radius: 50%; }
.card-main-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 250px; }
.card-kicker, .preview-label { margin-bottom: 14px; color: var(--muted); font-size: 0.85rem; font-weight: 700; }
.card-main-copy strong { font-size: clamp(3.6rem, 6vw, 5.6rem); font-weight: 800; letter-spacing: -0.09em; line-height: 0.88; }
.card-main-copy strong span { color: var(--coral); }
.signal-line { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.signal-line span { width: 8px; height: 8px; background: var(--navy); border-radius: 50%; }
.signal-line span:last-child { background: var(--coral); }
.signal-line i { display: block; width: 55px; height: 1px; background: var(--line); }
.card-footer { padding-top: 17px; border-top: 1px solid var(--line); }
.lab-card-float { display: flex; align-items: center; gap: 13px; min-width: 220px; padding: 15px 16px; border-radius: 18px; box-shadow: var(--shadow); }
.card-plugin { top: 9%; right: 0; transform: rotate(4deg); animation: card-float-small 6s ease-in-out 0.3s infinite; }
.card-app { right: 1%; bottom: 9%; transform: rotate(-3.5deg); animation: card-float-small 6s ease-in-out 0.9s infinite; }
.lab-card-float b, .lab-card-float small { display: block; line-height: 1.2; }
.lab-card-float b { font-size: 0.86rem; }
.lab-card-float small { margin-top: 4px; color: var(--muted); font-size: 0.7rem; }
.mini-icon { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; border-radius: 12px; }
.mini-icon svg { width: 20px; height: 20px; }
.mini-icon-coral { color: var(--coral-dark); background: var(--peach); }
.mini-icon-blue { color: #1e7f97; background: var(--blue); }
.mini-arrow { margin-left: auto; color: var(--muted); font-size: 1.15rem; }
.stamp { position: absolute; bottom: 1%; left: 5%; display: grid; width: 56px; height: 56px; place-items: center; color: var(--navy); border: 1px solid rgba(37, 42, 69, 0.32); border-radius: 50%; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; line-height: 1.1; text-align: center; transform: rotate(-12deg); }
.stamp span { color: var(--coral); }

.section { padding: 126px 0; }
.intro-section { display: grid; grid-template-columns: minmax(160px, 0.3fr) 1fr; gap: 80px; border-top: 1px solid var(--line); }
.section-index { color: var(--coral-dark); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.section-index span { display: block; margin-top: 12px; color: var(--muted); font-size: 0.72rem; font-weight: 650; letter-spacing: 0.05em; }
.intro-content { display: grid; grid-template-columns: minmax(300px, 0.95fr) minmax(250px, 0.65fr); gap: 90px; }
h2 { margin-bottom: 24px; font-size: clamp(2.7rem, 5vw, 5.3rem); font-weight: 800; letter-spacing: -0.085em; line-height: 0.96; }
.intro-copy { max-width: 420px; padding-top: 10px; color: var(--ink-soft); }
.intro-copy p { margin-bottom: 22px; }
.muted-copy { color: var(--muted); }

.making-section { padding-top: 40px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 50px; }
.section-heading .eyebrow { margin-bottom: 18px; }
.section-heading h2 { margin-bottom: 0; }
.section-side-copy { max-width: 260px; margin: 0 0 7px; color: var(--muted); font-size: 0.93rem; }
.making-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.make-card { min-height: 440px; padding: 24px; border: 1px solid rgba(44, 49, 76, 0.12); border-radius: var(--radius-lg); overflow: hidden; transition: transform 220ms ease, box-shadow 220ms ease; }
.make-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.make-card-lilac { background: var(--lilac); }
.make-card-blue { background: var(--blue); }
.make-card-peach { background: var(--peach); }
.make-card-head { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.15em; }
.round-arrow { display: grid; width: 34px; height: 34px; place-items: center; color: var(--ink); border: 1px solid rgba(31,36,55,0.18); border-radius: 50%; font-size: 1.1rem; font-weight: 500; letter-spacing: 0; }
.make-visual { position: relative; height: 170px; margin: 36px 0 30px; border: 1px solid rgba(31, 36, 55, 0.13); border-radius: 21px; background: rgba(255,255,255,0.55); overflow: hidden; }
.visual-plugin { padding: 24px; }
.visual-window-bar { display: flex; gap: 6px; margin-bottom: 23px; }
.visual-window-bar i { width: 7px; height: 7px; background: var(--coral); border-radius: 50%; opacity: 0.75; }
.visual-window-bar i:nth-child(2) { background: #bdaeff; }
.visual-window-bar i:nth-child(3) { background: #99dcea; }
.visual-window-line { width: 72%; height: 7px; margin-bottom: 10px; background: rgba(31,36,55,0.18); border-radius: 99px; }
.visual-window-line.line-short { width: 42%; background: rgba(31,36,55,0.35); }
.visual-shield { position: absolute; right: 24px; bottom: 21px; display: grid; width: 55px; height: 55px; place-items: center; color: white; background: var(--coral); border-radius: 17px; box-shadow: 0 8px 18px rgba(255, 112, 104, 0.28); font-size: 1.4rem; font-weight: 800; }
.visual-app { display: grid; place-items: center; }
.app-orbit { position: absolute; width: 120px; height: 120px; border: 1px solid rgba(46, 125, 150, 0.38); border-radius: 50%; animation: spin 12s linear infinite; }
.app-orbit::before { position: absolute; top: 13px; left: 14px; width: 9px; height: 9px; content: ""; background: #2e97b3; border-radius: 50%; }
.app-core { position: relative; z-index: 1; display: grid; width: 58px; height: 58px; place-items: center; color: white; background: var(--navy); border-radius: 19px; box-shadow: 0 12px 24px rgba(37,42,69,0.24); font-size: 1.65rem; }
.app-label { position: absolute; right: 16px; bottom: 16px; color: #2e7f95; font-size: 0.7rem; font-weight: 800; line-height: 1.15; text-align: right; text-transform: uppercase; }
.visual-system { background: rgba(255,255,255,0.44); }
.system-node { position: absolute; display: grid; width: 70px; height: 42px; place-items: center; color: var(--ink); background: rgba(255,255,255,0.78); border: 1px solid rgba(31,36,55,0.12); border-radius: 12px; font-size: 0.72rem; font-weight: 750; box-shadow: 0 8px 16px rgba(31,36,55,0.08); }
.node-a { top: 30px; left: 22px; }
.node-b { top: 88px; left: 104px; background: var(--coral); color: white; }
.node-c { top: 30px; right: 20px; }
.system-line { position: absolute; height: 1px; background: rgba(31,36,55,0.35); transform-origin: left center; }
.line-a { top: 61px; left: 87px; width: 60px; transform: rotate(29deg); }
.line-b { top: 108px; left: 174px; width: 55px; transform: rotate(-30deg); }
.make-card h3 { margin-bottom: 10px; font-size: 1.55rem; letter-spacing: -0.05em; }
.make-card p { min-height: 76px; margin-bottom: 22px; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-size: 0.77rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; }

.approach-section { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(60px, 10vw, 160px); align-items: start; }
.approach-intro { max-width: 330px; }
.approach-intro p:last-child { color: var(--muted); }
.approach-list { border-top: 1px solid var(--line); }
.approach-row { display: grid; grid-template-columns: 64px 1fr 34px; gap: 20px; align-items: start; padding: 26px 0; border-bottom: 1px solid var(--line); transition: padding 180ms ease, color 180ms ease; }
.approach-row:hover { padding-right: 10px; padding-left: 10px; color: var(--coral-dark); }
.row-number { padding-top: 3px; color: var(--coral-dark); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; }
.approach-row h3 { margin-bottom: 5px; color: var(--ink); font-size: 1.15rem; letter-spacing: -0.04em; }
.approach-row p { max-width: 470px; margin: 0; color: var(--muted); font-size: 0.92rem; }
.row-mark { color: var(--muted); font-size: 1.25rem; }

.featured-section { position: relative; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr); align-items: center; gap: 90px; min-height: 560px; padding: 80px clamp(30px, 7vw, 110px); color: var(--white); background: var(--navy); border-radius: var(--radius-xl); overflow: hidden; }
.featured-section::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 85% 20%, rgba(213, 208, 255, 0.4), transparent 31%), radial-gradient(circle at 20% 85%, rgba(255, 112, 104, 0.25), transparent 30%); }
.featured-copy, .featured-card { position: relative; z-index: 1; }
.eyebrow-light { color: var(--blue-deep); }
.featured-copy h2 { max-width: 580px; }
.featured-copy h2 em { color: var(--blue-deep); }
.featured-copy > p:not(.eyebrow) { max-width: 480px; margin-bottom: 32px; color: rgba(255,255,255,0.68); }
.featured-card { min-height: 350px; padding: 25px; color: var(--ink); background: linear-gradient(140deg, #fbf9ff, #e5f8fc 60%, #f9e8ef); border-radius: 28px; box-shadow: 0 28px 60px rgba(0,0,0,0.23); transform: rotate(3deg); animation: card-float 8s ease-in-out 0.7s infinite; }
.featured-card-header, .featured-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 15px; font-size: 0.73rem; font-weight: 750; }
.product-chip { display: inline-flex; align-items: center; gap: 9px; }
.product-mark { display: grid; width: 29px; height: 29px; place-items: center; color: var(--white); background: var(--coral); border-radius: 10px; }
.product-status { display: inline-flex; align-items: center; gap: 7px; color: #509674; }
.featured-card-body { display: flex; flex-direction: column; justify-content: center; min-height: 250px; padding-left: 8%; }
.featured-card-body strong { font-size: clamp(3.8rem, 7vw, 6.4rem); letter-spacing: -0.1em; line-height: 0.84; }
.featured-card-body strong span { color: var(--coral); }
.preview-bar { display: flex; gap: 8px; margin-top: 38px; }
.preview-bar span { display: block; width: 64px; height: 8px; background: var(--navy); border-radius: 99px; opacity: 0.72; }
.preview-bar span:nth-child(2) { width: 95px; background: var(--coral); }
.preview-bar span:nth-child(3) { width: 30px; background: #8ccddd; }
.featured-card-footer { padding-top: 16px; border-top: 1px solid rgba(31,36,55,0.16); color: var(--muted); text-transform: uppercase; }

.contact-section { position: relative; margin: 128px 0 68px; padding: 114px 30px; text-align: center; border: 1px solid rgba(44, 49, 76, 0.12); border-radius: var(--radius-xl); background: linear-gradient(135deg, #f0efff, #fff5f1 58%, #e8f8fb); overflow: hidden; }
.contact-section > *:not(.contact-orb) { position: relative; z-index: 1; }
.contact-section .eyebrow { justify-content: center; }
.contact-section h2 { margin-bottom: 24px; }
.contact-copy { max-width: 420px; margin: 0 auto 26px; color: var(--ink-soft); }
.email-link { display: inline-flex; align-items: center; gap: 11px; color: var(--coral-dark); border-bottom: 1px solid currentColor; font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 750; letter-spacing: -0.04em; }
.email-link span { font-size: 1.1em; transition: transform 180ms ease; }
.email-link:hover span { transform: translate(4px, -4px); }
.contact-orb { position: absolute; border: 1px solid rgba(255,112,104,0.25); border-radius: 50%; }
.contact-orb-one { top: -180px; left: -120px; width: 420px; height: 420px; }
.contact-orb-two { right: -130px; bottom: -220px; width: 460px; height: 460px; border-color: rgba(71,160,190,0.22); }

.site-footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 24px; padding: 28px 0 42px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.78rem; }
.footer-brand { color: var(--ink); }
.footer-brand .brand-mark { width: 36px; height: 36px; border-radius: 12px; }
.footer-brand .brand-mark svg { width: 24px; height: 24px; }
.site-footer p { margin: 0; text-align: center; }
.footer-right { display: flex; flex-wrap: wrap; justify-content: end; gap: 18px; }
.footer-right a:hover { color: var(--coral-dark); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.hero-art[data-reveal].is-visible { transition-delay: 120ms; }
.making-grid > :nth-child(2)[data-reveal] { transition-delay: 80ms; }
.making-grid > :nth-child(3)[data-reveal] { transition-delay: 160ms; }
.approach-list > :nth-child(2)[data-reveal] { transition-delay: 80ms; }
.approach-list > :nth-child(3)[data-reveal] { transition-delay: 160ms; }

@keyframes card-float { 0%, 100% { transform: rotate(-2.8deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-9px); } }
@keyframes card-float-small { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1080px) {
  .site-shell { padding: 0 32px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 75px; }
  .hero-copy { max-width: 780px; }
  .hero-art { width: min(100%, 720px); margin: 0 auto; }
  .intro-content { gap: 45px; }
  .featured-section { gap: 50px; }
}

@media (max-width: 760px) {
  .site-shell { padding: 0 20px; }
  .site-header { min-height: 78px; gap: 12px; }
  .brand-name { font-size: 0.96rem; }
  .brand-mark { width: 37px; height: 37px; border-radius: 12px; }
  .brand-mark svg { width: 25px; height: 25px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; padding: 8px 3px; }
  .site-nav { position: absolute; top: 72px; right: 0; left: 0; display: grid; gap: 0; padding: 8px; background: rgba(255,255,255,0.96); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity 180ms ease, transform 180ms ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 13px 15px; border-radius: 12px; }
  .site-nav a:hover { background: var(--lilac); }
  .hero { gap: 50px; padding: 62px 0 80px; }
  h1 { font-size: clamp(3.1rem, 15vw, 5.2rem); }
  .hero-caption { margin-top: 50px; }
  .hero-art { min-height: 470px; transform: scale(0.94); transform-origin: center top; }
  .art-grid { inset: 8% -7% 4% 0; }
  .lab-card-main { left: 0; width: 87%; min-height: 340px; padding: 22px; }
  .card-main-copy { min-height: 210px; }
  .card-main-copy strong { font-size: clamp(3.2rem, 14vw, 5rem); }
  .card-plugin { top: 4%; right: -2%; min-width: 190px; }
  .card-app { right: -4%; bottom: 8%; min-width: 190px; }
  .orbit-one { right: -25%; }
  .orbit-two { right: -5%; }
  .section { padding: 86px 0; }
  .intro-section, .intro-content, .approach-section, .featured-section { grid-template-columns: 1fr; }
  .intro-section { gap: 28px; }
  .intro-content { gap: 10px; }
  .intro-copy { padding-top: 0; }
  .section-heading { display: block; margin-bottom: 36px; }
  .section-side-copy { margin-top: 25px; }
  .making-section { padding-top: 15px; }
  .making-grid { grid-template-columns: 1fr; gap: 14px; }
  .make-card { min-height: 0; padding: 22px; }
  .make-visual { margin-top: 28px; }
  .make-card p { min-height: 0; }
  .approach-section { gap: 48px; }
  .featured-section { gap: 55px; min-height: auto; padding: 58px 24px; border-radius: 28px; }
  .featured-card { min-height: 315px; transform: rotate(2deg); }
  .featured-card-body { min-height: 220px; }
  .contact-section { margin: 86px 0 45px; padding: 76px 20px; border-radius: 28px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; gap: 17px; padding-bottom: 30px; }
  .site-footer p { text-align: left; }
  .footer-right { justify-content: start; gap: 10px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
