/* ==========================================================================
   Intercubo — site.css
   ========================================================================== */

:root {
  --bg: #f6f5f1;
  --paper: #ffffff;
  --ink: #0d0f14;
  --ink-2: #3c4049;
  --ink-3: #6b707b;
  --line: #dedcd6;
  --blue: #1a5cff;
  --blue-dark: #0f46d6;
  --night: #0b0d12;

  --t-blue: #e3ebfa;  --t-sand: #f8eedb;  --t-green: #e5f1de; --t-green-ink: #2f7a2c;
  --t-lilac: #ebe5f7; --t-grey: #eeede9;  --t-tan: #efe5d8;   --t-pink: #f7e0eb; --t-blush: #f3e8e2;

  --f-display: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --f-hand: "Gochi Hand", "Comic Sans MS", cursive;

  --wrap: 1200px;
  --gut: clamp(20px, 4vw, 40px);
  --r-lg: 22px;
  --r-md: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 1.0625rem/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--f-display); margin: 0; line-height: 1.02; letter-spacing: -0.035em; font-weight: 800; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -9999px; top: 8px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 8px; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gut) * 2); margin: 0 auto; padding: 0 var(--gut); }

/* ---------- Type ---------- */
.display { font-size: clamp(3rem, 7.2vw, 5.4rem); line-height: .96; }
.h-xl { font-size: clamp(2.4rem, 5.2vw, 3.9rem); line-height: 1; }
.h-lg { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.h-sm { font-size: 1.25rem; letter-spacing: -0.02em; }
.kicker { font: 600 .72rem/1.4 var(--f-body); letter-spacing: .22em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 1.25rem; }
.kicker--light { color: #a9adb8; }
.u-accent { color: var(--blue); position: relative; white-space: nowrap; }
.u-under { position: relative; white-space: nowrap; }
.dot { color: var(--blue); }
.swash { position: absolute; left: 4%; right: 8%; bottom: -.18em; width: 88%; height: .22em; color: var(--blue); pointer-events: none; }
.hand { font-family: var(--f-hand); font-size: 1.2rem; line-height: 1.2; text-transform: uppercase; letter-spacing: .02em; color: var(--ink); }
.hand small { font-size: .78em; }
.hand--light { color: #e8e9ee; }
.scribble-arrow { width: 52px; height: 36px; display: inline-block; vertical-align: middle; margin-left: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .95em 1.4em; border-radius: 8px; border: 1.5px solid transparent;
  font: 600 .92rem/1 var(--f-body); text-decoration: none; cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s;
}
.btn .icon { transition: transform .15s; }
.btn:hover .icon { transform: translateX(3px); }
.btn--sm { padding: .75em 1.1em; font-size: .85rem; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #262a33; }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-dark); }
.btn--outline { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--outline-light { border-color: #fff; color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.round-btn {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: #fff; flex: none;
}
.round-btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid currentColor; }
.stretched::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.stretched { text-decoration: none; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(246,245,241,.9); backdrop-filter: saturate(1.4) blur(10px); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand img { height: 38px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 40px; }
.site-nav ul { display: flex; gap: 34px; }
.site-nav ul a { font-size: .92rem; font-weight: 500; text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; }
.site-nav ul a:hover { border-color: var(--line); }
.site-nav ul a[aria-current="page"] { border-color: var(--blue); }
.nav-toggle { display: none; }

@media (max-width: 880px) {
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; }
  .nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: transform .2s; }
  .nav-toggle__bar::before, .nav-toggle__bar::after { content: ""; position: absolute; left: 0; }
  .nav-toggle__bar::before { top: -7px; } .nav-toggle__bar::after { top: 7px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--bg); flex-direction: column; align-items: stretch; gap: 20px; padding: 12px var(--gut) 28px; border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul a { display: block; padding: 14px 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .site-nav ul a[aria-current="page"] { color: var(--blue); border-color: var(--line); }
  .site-nav .btn { justify-content: center; }
}

/* ---------- Breadcrumbs ---------- */
.crumbs { padding-top: 22px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: .82rem; color: var(--ink-3); }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--line); }
.crumbs a { text-decoration: none; } .crumbs a:hover { text-decoration: underline; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--flush-top { padding-top: 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.section-head__aside { max-width: 360px; color: var(--ink-2); }
.link-hand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; border-bottom: 2px solid var(--ink); padding-bottom: 2px; }

/* ---------- Hero ---------- */
.hero { padding: clamp(32px, 5vw, 60px) 0 clamp(40px, 6vw, 80px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 40px; align-items: center; }
.hero__copy .display { margin-bottom: 36px; }
.hero__lead { font-size: 1.08rem; max-width: 30em; color: var(--ink-2); margin-bottom: 30px; }
.hero__note { margin-top: 38px; }

.hero__visual { position: relative; aspect-ratio: 1 / .92; }
.blob { position: absolute; inset: 8% 6% 12% 4%; background: var(--blue); border-radius: 38% 62% 44% 56% / 50% 38% 62% 50%; transform: rotate(-8deg); }
.device { position: absolute; background: #111; padding: 10px; border-radius: 22px; box-shadow: 0 30px 60px -20px rgba(13,15,20,.45); }
.device img { border-radius: 14px; width: 100%; }
.device--tablet { width: 64%; right: 2%; top: 6%; transform: rotate(-6deg); }
.device--laptop { width: 58%; left: 8%; bottom: 4%; transform: rotate(9deg); background: #1b1b1b; }
.hero__tag { position: absolute; font-size: 1rem; margin: 0; }
.hero__tag--top { top: 0; left: 6%; transform: rotate(-8deg); }
.hero__tag--bottom { right: -2%; bottom: 16%; transform: rotate(12deg); text-align: left; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; width: 100%; margin: 24px auto 0; }
}

/* ---------- Trust strip ---------- */
.trust { padding: 36px 0 20px; }
.trust .kicker { color: var(--ink-3); }
.trust__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 40px; }
.trust__logos li { font: 800 1.2rem/1 var(--f-display); letter-spacing: -.02em; color: var(--ink); opacity: .85; }
.trust__logos li.hand { font-family: var(--f-hand); font-weight: 400; text-transform: none; font-size: 1.15rem; }

/* ---------- Service cards ---------- */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.split__intro .h-xl { margin-bottom: 36px; }
.split__intro > p:not(.kicker):not(.hand) { max-width: 28em; color: var(--ink-2); }
.split__note { margin-top: 36px; padding-left: 26%; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split__note { padding-left: 0; } }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.svc-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .svc-grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-grid, .svc-grid--3 { grid-template-columns: 1fr; } }

.svc-card { position: relative; border-radius: var(--r-lg); padding: 26px 24px 24px; display: flex; flex-direction: column; min-height: 240px; }
.svc-card .icon { margin-bottom: 26px; }
.svc-card__title { font: 700 1.08rem/1.25 var(--f-body); letter-spacing: -.01em; margin-bottom: 6px; }
.svc-card p { font-size: .88rem; color: var(--ink-2); margin-bottom: 22px; }
.svc-card .round-btn { margin-top: auto; }
.svc-card:hover .round-btn { background: var(--ink); color: #fff; border-color: var(--ink); }
.tone-green .svc-card__title, .tone-green p { color: var(--t-green-ink); }

.tone-blue  { background: var(--t-blue); }  .tone-sand  { background: var(--t-sand); }
.tone-green { background: var(--t-green); } .tone-lilac { background: var(--t-lilac); }
.tone-grey  { background: var(--t-grey); }  .tone-tan   { background: var(--t-tan); }
.tone-pink  { background: var(--t-pink); }  .tone-blush { background: var(--t-blush); }

/* ---------- Work cards ---------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 820px) { .work-grid { grid-template-columns: 1fr; } }
.work-card { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; border-radius: var(--r-lg); overflow: hidden; min-height: 250px; }
.work-card__text { padding: 26px 18px 24px 24px; display: flex; flex-direction: column; }
.work-card__title { font: 800 1.35rem/1.12 var(--f-display); letter-spacing: -.025em; margin: 14px 0 10px; }
.work-card p { font-size: .86rem; color: var(--ink-2); margin-bottom: 20px; }
.work-card .round-btn { margin-top: auto; transition: transform .15s; }
.work-card:hover .round-btn { transform: translateX(4px); }
.work-card__media { position: relative; }
.work-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 480px) { .work-card { grid-template-columns: 1fr; } .work-card__media { aspect-ratio: 4/3; order: -1; } }

.tags { display: flex; flex-wrap: wrap; gap: 0; }
.tags li { font-size: .68rem; font-weight: 500; border: 1px solid var(--ink-3); padding: 2px 8px; color: var(--ink-2); }
.tags li:first-child { border-radius: 6px 0 0 6px; }
.tags li:last-child { border-radius: 0 6px 6px 0; }
.tags li:only-child { border-radius: 6px; }
.tags li + li { border-left: 0; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 44px; counter-reset: step; }
.process__step { position: relative; }
.process__step .icon { color: var(--blue); margin-bottom: 14px; }
.process__step h3 { font: 700 1.1rem/1.2 var(--f-body); letter-spacing: -.01em; margin-bottom: 6px; }
.process__step p { font-size: .9rem; color: var(--ink-2); max-width: 17em; }
.process__step:not(:last-child)::after {
  content: ""; position: absolute; top: 14px; right: 6%; width: 22%; height: 22px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 22'%3E%3Cpath d='M2 18c16-2 34-8 52-14M46 3l8 1-3 8' fill='none' stroke='%230d0f14' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
@media (max-width: 820px) { .process { grid-template-columns: 1fr 1fr; } .process__step::after { display: none; } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--night); color: #fff; padding: clamp(60px, 8vw, 100px) 0; position: relative; overflow: hidden; }
.cta-band__inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.cta-band h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-bottom: 26px; }
.cta-band__lead { color: #c3c6cf; max-width: 32em; margin-bottom: 30px; }
.cta-band__note { font-size: 1.35rem; transform: rotate(-6deg); justify-self: center; max-width: 12em; text-align: center; }
@media (max-width: 820px) { .cta-band__inner { grid-template-columns: 1fr; } .cta-band__note { display: none; } }

/* ---------- Inner page hero ---------- */
.page-hero { padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 6vw, 80px); }
.page-hero__inner { max-width: 880px; }
.page-hero__inner .h-xl { margin-bottom: 26px; }
.page-hero__lead { font-size: 1.15rem; color: var(--ink-2); max-width: 36em; margin-bottom: 28px; }
.page-hero--tinted, .case-hero { width: calc(100% - 2 * var(--gut)); max-width: calc(var(--wrap) + 2 * var(--gut)); margin: 18px auto 0; border-radius: 28px; }
.page-hero__inner--icon { display: grid; grid-template-columns: auto 1fr; gap: 36px; max-width: none; }
.page-hero__icon { width: 104px; height: 104px; border-radius: 26px; background: var(--paper); display: grid; place-items: center; }
@media (max-width: 640px) { .page-hero__inner--icon { grid-template-columns: 1fr; gap: 20px; } .page-hero__icon { width: 80px; height: 80px; } }
.page-hero--center { text-align: center; } .page-hero--center .page-hero__inner { margin: 0 auto; } .page-hero--center .page-hero__lead { margin-inline: auto; } .page-hero--center .btn-row { justify-content: center; }

/* ---------- Service list ---------- */
.svc-list { display: grid; gap: 16px; }
.svc-row { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 30px 32px; border-radius: var(--r-lg); }
.svc-row h2 { font-size: 1.6rem; margin-bottom: 10px; }
.svc-row p { color: var(--ink-2); max-width: 44em; margin-bottom: 14px; }
.svc-row:hover .round-btn { transform: translateX(4px); }
.svc-row .round-btn { transition: transform .15s; }
@media (max-width: 640px) { .svc-row { grid-template-columns: 1fr; gap: 14px; padding: 24px; } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { background: rgba(255,255,255,.7); border-radius: 99px; padding: 4px 12px; font-size: .8rem; font-weight: 500; }

/* ---------- Service detail ---------- */
.prose-split { display: grid; grid-template-columns: 1.4fr .8fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
@media (max-width: 820px) { .prose-split { grid-template-columns: 1fr; } }
.prose { max-width: 40em; }
.prose p { font-size: 1.08rem; color: var(--ink-2); }
.prose h2 { font-size: 1.6rem; margin: 1.8em 0 .6em; }
.prose h2:first-child { margin-top: 0; }
.fit-box { background: var(--paper); border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--line); }
.fit-box .h-sm { margin-bottom: 16px; }
.checks { display: grid; gap: 12px; margin: 0 0 1.2em; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.checks .icon { color: var(--blue); flex: none; margin-top: 3px; }

.include-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 36px; border-top: 1px solid var(--line); }
.include-grid li { padding: 26px 26px 26px 0; border-bottom: 1px solid var(--line); }
.include-grid h3 { font: 700 1.05rem/1.3 var(--f-body); letter-spacing: -.01em; margin-bottom: 6px; }
.include-grid p { font-size: .93rem; color: var(--ink-2); margin: 0; }
@media (max-width: 820px) { .include-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .include-grid { grid-template-columns: 1fr; } }

.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; }
@media (max-width: 820px) { .faq-wrap { grid-template-columns: 1fr; } }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; font-weight: 600; font-size: 1.05rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font: 400 1.6rem/1 var(--f-body); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--ink-2); padding-bottom: 20px; max-width: 42em; }

/* ---------- Case study ---------- */
.case-hero { padding: clamp(36px, 5vw, 64px) 0; }
.case-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.case-hero .h-xl { margin: 18px 0 22px; }
.case-hero__media img { border-radius: 18px; box-shadow: 0 30px 60px -28px rgba(13,15,20,.4); }
@media (max-width: 820px) { .case-hero__grid { grid-template-columns: 1fr; } }
.case-body { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
@media (max-width: 820px) { .case-body { grid-template-columns: 1fr; } }
.case-facts { margin: 0; display: grid; gap: 18px; position: sticky; top: 100px; }
@media (max-width: 820px) { .case-facts { position: static; grid-template-columns: 1fr 1fr; } }
.case-facts dt { font-size: .75rem; font-weight: 600; color: var(--ink-3); margin-bottom: 2px; }
.case-facts dd { margin: 0; font-weight: 500; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gallery figure { margin: 0; } .gallery img { border-radius: var(--r-md); }
@media (max-width: 640px) { .gallery { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 4vw, 36px); display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field .opt { font-weight: 400; color: var(--ink-3); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--bg); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.field [aria-invalid="true"] { border-color: #c62828; }
.field__err { color: #c62828; font-size: .85rem; margin: 6px 0 0; }
.form__alert { background: #fdecea; color: #8e1c1c; padding: 12px 16px; border-radius: 10px; margin: 0; }
.form .btn { justify-self: start; }
.hp { position: absolute; left: -9999px; }
.contact-list { display: grid; gap: 16px; margin: 18px 0 26px; }
.contact-list a, .contact-list span { display: flex; gap: 12px; align-items: center; text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--blue); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); padding: 72px 0 32px; border-top: 1px solid var(--line); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } .site-footer__brand { grid-column: 1 / -1; } }
.site-footer__brand img { height: 38px; width: auto; margin-bottom: 18px; }
.site-footer__brand p { color: var(--ink-2); max-width: 26em; font-size: .95rem; }
.site-footer address { display: grid; gap: 8px; font-size: .95rem; }
.site-footer address a, .site-footer address span { display: inline-flex; gap: 10px; align-items: center; text-decoration: none; }
.site-footer__h { font: 600 .8rem/1 var(--f-body); letter-spacing: .04em; color: var(--ink-3); margin-bottom: 16px; }
.site-footer ul { display: grid; gap: 10px; font-size: .95rem; }
.site-footer ul a { text-decoration: none; } .site-footer a:hover { color: var(--blue); }
.site-footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--ink-3); }
.site-footer__legal p { margin: 0; }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero__visual .device--tablet { animation: rise .9s cubic-bezier(.2,.8,.2,1) .1s both; }
  .hero__visual .device--laptop { animation: rise .9s cubic-bezier(.2,.8,.2,1) .25s both; }
  @keyframes rise { from { opacity: 0; translate: 0 40px; } to { opacity: 1; translate: 0 0; } }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
