:root {
  --ink: #111827;
  --ink-2: #1f2937;
  --muted: #4b5563;
  --paper: #ffffff;
  --paper-2: #f9fafb;
  --coral: #ff7d66;
  --coral-hot: #ff5f48;
  --peach: #fff7ed;
  --peach-ink: #c2410c;
  --violet: #7a3cff;
  --mango: #ff8a3c;
  --line: rgba(17, 24, 39, .1);
  --shadow: 0 4px 20px rgba(0, 0, 0, .1);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Manrope", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; overflow-x: clip; }
body.site {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: clip; /* prevent carousel from opening a horizontal page scroll */
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip { position: absolute; left: -999px; }
.wrap { width: min(1280px, calc(100% - 2rem)); margin-inline: auto; }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .9rem; border-radius: 999px;
  background: var(--peach); color: var(--peach-ink);
  font-size: .82rem; font-weight: 600;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem; padding: .85rem 1.5rem; border-radius: 999px;
  text-decoration: none; font-weight: 700; border: 0; cursor: pointer;
  font-family: inherit; transition: transform .2s ease, background .2s ease;
}
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #1f2937; transform: scale(1.03); }
.btn-coral, .btn-glow {
  background: var(--coral); color: #fff;
  box-shadow: 0 10px 24px rgba(255, 125, 102, .35);
}
.btn-coral:hover, .btn-glow:hover { background: var(--coral-hot); transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.text-link { font-weight: 700; text-decoration: none; }

.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 1.5rem;
  max-width: 1280px; margin-inline: auto; width: 100%;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
}
.brand img { height: 40px; width: auto; }
.nav-links { display: none; gap: 2rem; font-weight: 500; color: var(--muted); }
.nav-link {
  position: relative; text-decoration: none; padding: .35rem 0; color: inherit;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: currentColor; transition: width .3s ease;
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }
.nav-link.is-on {
  color: var(--ink);
  font-weight: 700;
}
.nav-link.is-on::after {
  width: 100%;
  background: var(--coral);
}
.nav-end .btn.is-on {
  background: var(--coral);
  box-shadow: 0 8px 20px rgba(255, 125, 102, .3);
}
.nav-end { display: flex; align-items: center; gap: .75rem; }
.nav-login {
  display: none; padding: .5rem 1rem; text-decoration: none;
  color: var(--muted); font-weight: 600;
}
.nav-login:hover { color: var(--ink); }
.nav-end .btn { display: none; }
.lang {
  display: flex; gap: .15rem; background: var(--paper-2);
  border-radius: 999px; padding: .15rem; border: 1px solid var(--line);
}
.lang a {
  text-decoration: none; padding: .25rem .55rem; border-radius: 999px;
  font-size: .78rem; font-weight: 700; color: var(--muted);
}
.lang a.is-on { background: var(--ink); color: #fff; }
.burger {
  width: 42px; height: 42px; border: 0; background: var(--ink);
  border-radius: 999px; display: grid; place-items: center; gap: 5px;
}
.burger span { display: block; width: 16px; height: 2px; background: #fff; }
.drawer {
  position: fixed; inset: 0; background: var(--ink); color: #fff; z-index: 50;
  display: none; flex-direction: column; justify-content: center; padding: 2rem; gap: 1rem;
  font-size: clamp(1.5rem, 6vw, 2.2rem); font-weight: 700;
}
.drawer.is-open { display: flex; }
.drawer a { text-decoration: none; }
.drawer a.is-on { color: var(--coral); }
.drawer-close {
  position: absolute; top: 1rem; right: 1rem; background: transparent;
  color: #fff; border: 0; font-size: 2.4rem;
}

/* CodePen-inspired hero */
.hero {
  position: relative;
  overflow-x: clip; /* kill sideways bleed from the 200% track */
  overflow-y: visible;
  padding: 2.8rem 0 0;
  background: #fff;
}
.hero-inner { text-align: center; max-width: 820px; }
.hero-badge {
  display: inline-block; margin: 0 0 1.6rem;
  background: var(--peach); color: var(--peach-ink);
  padding: .55rem 1.4rem; border-radius: 999px;
  font-size: .9rem; font-weight: 600;
}
.hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  line-height: 1.12; letter-spacing: -.03em;
  margin: 0 0 1.1rem; color: var(--ink);
}
.hero-brand {
  background: linear-gradient(90deg, #111827, #ff7d66);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem); line-height: 1.65;
  color: var(--muted); max-width: 34rem; margin: 0 auto;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center;
  margin: 1.6rem 0 0; position: relative; z-index: 2;
}
.hero-cta .btn { padding: .9rem 1.6rem; font-size: 1rem; font-weight: 600; }

.carousel-wrapper {
  position: relative; width: 100%;
  height: 340px; margin: 2.2rem 0 .75rem;
  overflow: hidden; /* keep animation inside the section — no page-wide scrollbar */
}
.carousel-fade {
  position: absolute; top: 0; bottom: 0; width: min(12vw, 120px); z-index: 2;
  pointer-events: none;
}
.carousel-fade--left { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.carousel-fade--right { right: 0; background: linear-gradient(270deg, #fff, transparent); }
.carousel-container {
  position: absolute; width: 140%; left: 50%; transform: translateX(-50%);
  height: 640px; border-radius: 50%; bottom: -360px; perspective: 1000px;
}
.carousel-track {
  position: absolute; width: 100%; height: 100%;
  display: flex; gap: 1.25rem; padding: 0 calc(20% - 110px);
  align-items: flex-start; transform-origin: center 40%; will-change: transform;
}
.carousel-card {
  flex: 0 0 210px; height: 260px; border-radius: 1rem; overflow: hidden;
  box-shadow: var(--shadow); background: #eee;
  flex-shrink: 0;
}
.carousel-card img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04); transition: transform .5s ease;
}
.carousel-card:hover img { transform: scale(1.08); }

.hero-trust {
  list-style: none; margin: 0 auto; padding: 1.6rem 0 2.5rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  border-top: 1px solid var(--line); max-width: 720px;
  position: relative; z-index: 3; background: #fff;
}
.hero-trust li { text-align: center; }
.hero-trust b {
  display: block; font-family: var(--display); font-size: 1.45rem; font-weight: 800;
}
.hero-trust span { color: var(--muted); font-size: .82rem; }

.intro { display: grid; gap: 1.2rem; padding: 4.5rem 0 2.2rem; align-items: end; }
.intro h2 {
  font-family: var(--display); font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.15; margin: .5rem 0 0;
}
.intro-right { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin: 0; }
.values { display: grid; gap: 1rem; padding-bottom: 3.5rem; }
.values article {
  background: var(--paper-2); padding: 1.35rem 1.3rem; border-radius: 1.25rem;
  border: 1px solid var(--line);
}
.values b {
  display: block; color: var(--coral); font-family: var(--display);
  font-size: .85rem; margin-bottom: .45rem;
}
.values h3 { margin: 0 0 .45rem; font-size: 1.1rem; }
.values p { margin: 0; color: var(--muted); font-size: .95rem; }
.sec-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 1rem; margin-bottom: 1.4rem;
}
.sec-head--center { justify-content: center; text-align: center; }
.sec-head--center > div { max-width: 36rem; }
.sec-head .kicker { margin-bottom: .55rem; }
.sec-head h2 {
  font-family: var(--display); font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  margin: 0; line-height: 1.15;
}
.sec-head .muted { margin: .55rem 0 0; }
.sec-head a { font-weight: 700; text-decoration: none; color: var(--coral); white-space: nowrap; }

.orbit-cards { display: grid; gap: 1rem; padding-bottom: 3.5rem; }
.orb {
  display: grid; grid-template-columns: 92px 1fr; gap: 1rem; align-items: center;
  text-decoration: none; background: #fff; padding: .75rem; border-radius: 1.25rem;
  border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease;
}
.orb:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(17,24,39,.08); }
.orb img { width: 92px; height: 72px; object-fit: cover; border-radius: 1rem; }
.orb strong { display: block; font-family: var(--display); margin-bottom: .15rem; }
.orb span { color: var(--muted); font-size: .9rem; }

.split {
  display: grid; gap: 1.6rem; padding: 2.2rem 0 3.2rem; align-items: center;
}
.split-media {
  position: relative;
  /* keep floating screenshots inside the section footprint */
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
}
.split-media > img:first-child {
  border-radius: 1.5rem; width: 100%; border: 1px solid var(--line);
}
.split-media .float {
  position: absolute; width: 46%; right: -2%; bottom: 0;
  border-radius: 1.1rem; box-shadow: var(--shadow); border: 5px solid #fff;
}
.split.reverse .split-media .float,
.split-media .float.alt {
  right: auto;
  left: -2%;
  bottom: 0;
}
.split-copy h2 {
  font-family: var(--display); font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.15; margin: .45rem 0 .8rem;
}
.split-copy p { color: var(--muted); margin: 0 0 1.2rem; max-width: 38ch; }
.muted { color: var(--muted); }

.plans {
  padding-top: 2.75rem;
  margin-top: .75rem;
  position: relative;
  z-index: 1;
}
.plan-row { display: grid; gap: 1rem; padding-bottom: 3.5rem; }
.plan {
  background: #fff; padding: 1.5rem; border-radius: 1.5rem;
  border: 1px solid var(--line); display: flex; flex-direction: column;
}
.plan.is-hot { background: var(--ink); color: #fff; border-color: var(--ink); }
.plan.is-hot .muted { color: rgba(255,255,255,.7); }
.plan .badge {
  font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--coral); margin-bottom: .5rem;
}
.plan h3 { margin: 0 0 .35rem; font-size: 1.25rem; }
.plan .range { font-family: var(--display); font-size: 2.1rem; margin: .6rem 0 1rem; }
.plan .range small { font-size: .95rem; font-weight: 600; opacity: .7; }
.plan ul { padding-left: 1rem; margin: 0 0 1.4rem; flex: 1; }
.plan li { margin: .45rem 0; font-size: .92rem; }
.plan .btn { align-self: flex-start; }

.gift {
  display: grid; gap: 1.2rem; align-items: center;
  background: linear-gradient(145deg, #1f2937, #0b1220);
  color: #fff; padding: 1.8rem; border-radius: 1.5rem; margin-bottom: 3rem;
}
.gift img { border-radius: 1.2rem; max-height: 280px; object-fit: cover; width: 100%; }
.gift h2 { font-family: var(--display); font-size: clamp(1.5rem, 4vw, 2.2rem); margin: .4rem 0 .7rem; }
.gift > div > p:not(.kicker) { color: rgba(255,255,255,.78); margin: 0 0 1.2rem; max-width: 40ch; }
.gift .kicker { background: rgba(255,125,102,.2); color: #ffd4cb; }
.gift-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.gift-ghost { border-color: rgba(255,255,255,.28); color: #fff; }

.partners { text-align: center; padding-bottom: 3rem; color: var(--muted); }
.logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem;
  align-items: center; margin-top: 1rem;
}
.logos img { height: 28px; width: auto; filter: grayscale(1); opacity: .7; }

.post-grid { display: grid; gap: 1rem; padding-bottom: 3rem; }
.post-card {
  text-decoration: none; background: #fff; border-radius: 1.25rem;
  overflow: hidden; border: 1px solid var(--line);
}
.post-card img { height: 170px; width: 100%; object-fit: cover; }
.post-card strong, .post-card span { display: block; padding: 0 1rem; }
.post-card strong { padding-top: 1rem; font-family: var(--display); }
.post-card span { padding-bottom: 1.1rem; color: var(--muted); font-size: .92rem; }

.acc details {
  background: #fff; border-radius: 1rem; padding: .4rem 1rem;
  margin: .5rem 0; border: 1px solid var(--line);
}
.acc summary { cursor: pointer; font-weight: 700; padding: .7rem 0; }

.page-hero {
  width: min(1280px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 4.5rem 0 2rem;
}
.page-hero h1 {
  font-family: var(--display); font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.15; margin: .4rem 0;
}
.page-hero .lead { max-width: 42ch; color: var(--muted); }
.page-hero--services { border-bottom: 1px solid var(--line); margin-bottom: 1.2rem; }

/* Services page */
.services-hero {
  position: relative;
  padding: 2.8rem 0 2rem;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fffaf7 55%, #fff 100%);
}
.services-hero__glow {
  position: absolute;
  inset: -18% -10% auto;
  height: 55%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 125, 102, .2), transparent 68%);
  pointer-events: none;
}
.services-hero__inner {
  position: relative;
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.services-hero__badge,
.services-hero__title,
.services-hero__lead,
.services-hero__actions {
  opacity: 0;
  transform: translate3d(0, .85rem, 0);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1),
    transform .8s cubic-bezier(.22, 1, .36, 1);
}
.services-hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.05rem, 5.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0;
  transition-delay: .06s;
}
.services-hero__lead {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  line-height: 1.65;
  transition-delay: .12s;
}
.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-top: .15rem;
  transition-delay: .18s;
}
.services-hero.is-in .services-hero__badge,
.services-hero.is-in .services-hero__title,
.services-hero.is-in .services-hero__lead,
.services-hero.is-in .services-hero__actions {
  opacity: 1;
  transform: none;
}

.svc-jump {
  display: flex;
  flex-wrap: wrap;
  gap: .15rem .1rem;
  padding: .5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  justify-content: center;
}
.svc-jump a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  padding: .45rem .7rem;
  color: var(--muted);
  border-radius: .4rem;
  transition: color .2s ease, background .2s ease;
}
.svc-jump a:hover {
  color: var(--coral-hot);
  background: var(--peach);
}

.method {
  display: grid;
  gap: 0;
  padding: 2.2rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
}
.method article {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.method article:first-child { border-top: 0; }
.method span {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  color: var(--coral);
  font-size: 1.05rem;
  letter-spacing: .02em;
  margin-bottom: .4rem;
}
.method h3 { margin: 0 0 .4rem; font-size: 1.15rem; }
.method p { margin: 0; color: var(--muted); line-height: 1.55; max-width: 28rem; }

.svc-stack { display: grid; gap: 0; padding: 0 0 2rem; }
.svc {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 5.5rem;
}
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc:target {
  background: linear-gradient(90deg, rgba(255, 125, 102, .08), transparent 65%);
  margin-inline: -1rem;
  padding-inline: 1rem;
  border-radius: 1rem;
}
.svc__num {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  color: var(--coral);
  letter-spacing: .06em;
  font-size: .9rem;
  margin-bottom: .35rem;
}
.svc__sub {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 800;
  color: var(--muted);
}
.svc h2 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: .35rem 0 .75rem;
}
.svc__copy > p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.65;
  font-size: 1.02rem;
}
.svc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.svc__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 1.15rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 125, 102, .28), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(17, 24, 39, .2), transparent 40%),
    #111827;
}
.svc__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc__media--glyph { display: grid; place-items: center; padding: 1.6rem; }
.svc__media--glyph img {
  width: min(58%, 180px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .25));
}

.audiences {
  padding: 2.5rem 0 2.8rem;
  border-bottom: 1px solid var(--line);
}
.audiences .kicker { margin-bottom: .2rem; }
.audiences h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: .4rem 0 1.2rem;
}
.audiences-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.audiences-list li {
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  font-size: 1.02rem;
}

.services-cta {
  padding: 0 0 3.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255, 125, 102, .14), transparent 65%),
    linear-gradient(180deg, #fffaf7 0%, #fff 100%);
}
.services-cta__inner {
  text-align: center;
  padding: 3rem 0 1rem;
  display: grid;
  gap: .85rem;
  justify-items: center;
}
.services-cta__inner h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  margin: 0;
  max-width: 22ch;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.services-cta__inner > p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.65;
}

.services-faq { padding: 0 0 4rem; }
.services-faq__list { max-width: 52rem; }
.services-faq .acc details {
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 0;
}
.services-faq .acc summary {
  padding: 1.1rem 0;
  font-size: 1.02rem;
}
.services-faq .acc details p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  line-height: 1.65;
}

[data-services-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.15rem, 0);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1),
    transform .8s cubic-bezier(.22, 1, .36, 1);
}
[data-services-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .services-hero__badge,
  .services-hero__title,
  .services-hero__lead,
  .services-hero__actions,
  [data-services-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.chips, .pill-list { display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; list-style: none; }
.chips span, .pill-list li {
  background: #fff; padding: .5rem 1rem; border-radius: 999px;
  font-weight: 700; border: 1px solid var(--line);
}
.features-arc { display: grid; gap: 1rem; padding-bottom: 2rem; }
.features-arc article { background: #fff; padding: 1.2rem; border-radius: 1.25rem; border: 1px solid var(--line); }
.features-arc b { font-family: var(--display); color: var(--coral); }
.screen-wrap img { width: 100%; border-radius: 1.4rem; box-shadow: var(--shadow); }
.ind-grid { display: grid; gap: 1rem; }
.ind-grid img { height: 220px; object-fit: cover; width: 100%; border-radius: 1.4rem; }
.ind-grid figcaption { font-weight: 800; margin-top: .4rem; }
.steps ol { list-style: none; padding: 0; display: grid; gap: .8rem; }
.steps li {
  background: #fff; padding: 1rem; border-radius: 1rem; font-weight: 700;
  display: flex; gap: .8rem; align-items: center; border: 1px solid var(--line);
}
.steps span { font-family: var(--display); color: var(--coral); }

/* ARIS product page */
.aris-hero {
  padding: 2.5rem 0 0; text-align: center; overflow: hidden;
}
.aris-hero__inner { max-width: 760px; }
.aris-hero__logo {
  height: 36px; width: auto; margin: 0 auto 1.4rem; filter: none;
}
.aris-hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.12;
  letter-spacing: -.03em; margin: 0 0 1.1rem;
}
.aris-hero .lead {
  color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 36rem; margin: 0 auto 1.6rem; line-height: 1.65;
}
.aris-hero__actions {
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-bottom: 2.4rem;
}
.aris-showcase {
  position: relative; max-width: 980px; padding-bottom: 3.5rem;
}
.aris-showcase__main {
  margin: 0; border-radius: 1.4rem; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(17,24,39,.12);
  background: var(--paper-2);
}
.aris-showcase__main img { width: 100%; height: auto; display: block; }
.aris-showcase__float {
  position: absolute; width: min(42%, 280px); right: 4%; bottom: 1.5rem; margin: 0;
  border-radius: 1.1rem; overflow: hidden;
  border: 6px solid #fff; box-shadow: 0 18px 40px rgba(17,24,39,.18);
  transform: rotate(4deg);
}
.aris-showcase__float img { width: 100%; height: auto; display: block; }

.aris-features {
  display: grid; gap: 1rem; padding: 1rem 0 3rem;
}
.aris-features article {
  padding: 1.3rem 0; border-top: 1px solid var(--line); text-align: left;
}
.aris-features b {
  display: block; font-family: var(--display); color: var(--coral);
  font-size: .9rem; margin-bottom: .4rem;
}
.aris-features h3 { margin: 0 0 .4rem; font-size: 1.15rem; }
.aris-features p { margin: 0; color: var(--muted); max-width: 36ch; }

.aris-industries { padding-bottom: 3rem; }
.aris-ind-grid { display: grid; gap: 1rem; margin-bottom: 1.2rem; }
.aris-ind-grid figure { margin: 0; }
.aris-ind-grid img {
  width: 100%; height: 220px; object-fit: cover; border-radius: 1.25rem;
  border: 1px solid var(--line);
}
.aris-ind-grid figcaption {
  margin-top: .55rem; font-weight: 700; font-size: .95rem;
}

.aris-steps { padding-bottom: 3rem; }
.aris-steps .sec-head { flex-direction: column; align-items: flex-start; }
.aris-step-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .7rem;
}
.aris-step-list li {
  display: flex; gap: 1rem; align-items: center;
  padding: 1rem 1.1rem; border-radius: 1rem;
  border: 1px solid var(--line); background: var(--paper-2);
}
.aris-step-list span {
  flex: 0 0 auto; width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center; border-radius: 999px;
  background: var(--ink); color: #fff; font-weight: 800; font-size: .85rem;
}
.aris-step-list strong { font-weight: 700; font-size: 1rem; }

.aris-cta {
  display: grid; gap: 1.4rem; align-items: center;
  padding: 1.8rem; margin-bottom: 3rem;
  border-radius: 1.5rem; background: var(--paper-2);
  border: 1px solid var(--line);
}
.aris-cta h2 {
  font-family: var(--display); font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.15; margin: .4rem 0 0.7rem;
}
.aris-cta p { color: var(--muted); margin: 0 0 1.2rem; max-width: 40ch; }
.aris-cta .aris-hero__actions { justify-content: flex-start; margin: 0; }
.aris-cta__mark {
  width: min(180px, 50%); height: auto; margin-inline: auto;
  opacity: .9;
}
.contact-grid, .jobs { display: grid; gap: 1.2rem; padding-bottom: 3rem; }
.card-form, .contact-aside article {
  background: #fff; padding: 1.2rem; border-radius: 1.25rem; border: 1px solid var(--line);
}
.card-form { display: grid; gap: .8rem; }
.card-form label, .field { display: grid; gap: .35rem; font-weight: 700; }
.card-form input, .card-form select, .card-form textarea, .field input, .field textarea {
  border: 1px solid var(--line); border-radius: .9rem; padding: .8rem;
  font: inherit; background: var(--paper-2);
}
.contact-aside iframe { width: 100%; min-height: 220px; border: 0; border-radius: 1.25rem; }

/* Contact page */
.contact-hero {
  position: relative;
  padding: 2.8rem 0 2.2rem;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fffaf7 60%, #fff 100%);
}
.contact-hero__glow {
  position: absolute;
  inset: -18% -10% auto;
  height: 55%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 125, 102, .2), transparent 68%);
  pointer-events: none;
}
.contact-hero__inner {
  position: relative;
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.contact-hero__badge,
.contact-hero__title,
.contact-hero__lead,
.contact-hero__actions {
  opacity: 0;
  transform: translate3d(0, .85rem, 0);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1),
    transform .8s cubic-bezier(.22, 1, .36, 1);
}
.contact-hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.05rem, 5.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin: 0;
  transition-delay: .06s;
}
.contact-hero__lead {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  line-height: 1.65;
  transition-delay: .12s;
}
.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-top: .2rem;
  transition-delay: .18s;
}
.contact-hero.is-in .contact-hero__badge,
.contact-hero.is-in .contact-hero__title,
.contact-hero.is-in .contact-hero__lead,
.contact-hero.is-in .contact-hero__actions {
  opacity: 1;
  transform: none;
}

.contact-save {
  display: block;
  padding: 0 0 1.25rem;
}
.contact-save__inner {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, #111827 0%, #1f2937 55%, #292524 100%);
  color: #f3f4f6;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .18);
}
.contact-save__copy strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: .25rem;
  color: #fff;
}
.contact-save__copy p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.45;
  color: #d1d5db;
}
.contact-save__btn {
  align-self: stretch;
  justify-content: center;
  gap: .45rem;
}
.contact-save__btn svg { flex-shrink: 0; }
@media (min-width: 880px) {
  .contact-save { display: none; }
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
  padding: 1rem 0 3.5rem;
  align-items: start;
}
.contact-channels__title,
.contact-form__title {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: .45rem 0 1.25rem;
}
.contact-channel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.contact-channel-list li { border-bottom: 1px solid var(--line); }
.contact-channel {
  display: grid;
  gap: .2rem;
  padding: 1.15rem 0;
  text-decoration: none;
  color: inherit;
  transition: padding-left .25s ease;
}
a.contact-channel:hover { padding-left: .35rem; }
a.contact-channel:hover .contact-channel__value { color: var(--coral-hot); }
.contact-channel__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-channel__value {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  transition: color .25s ease;
  word-break: break-word;
}
.contact-channel__meta {
  color: var(--muted);
  font-size: .92rem;
  margin-top: .15rem;
}
.contact-map {
  margin-top: 1.5rem;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
}
.contact-map iframe {
  width: 100%;
  min-height: 240px;
  border: 0;
  display: block;
}

.contact-form {
  display: grid;
  gap: .85rem;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(180deg, #fffaf7, #fff);
  border: 1px solid rgba(255, 125, 102, .18);
  border-radius: 1.25rem;
}
.contact-form__row {
  display: grid;
  gap: .85rem;
}
.contact-field {
  display: grid;
  gap: .35rem;
  font-weight: 700;
  font-size: .92rem;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
  border: 1px solid var(--line);
  border-radius: .9rem;
  padding: .85rem 1rem;
  font: inherit;
  font-weight: 500;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: 0;
  border-color: rgba(255, 125, 102, .55);
  box-shadow: 0 0 0 3px rgba(255, 125, 102, .15);
}
.contact-form .btn { justify-self: start; margin-top: .25rem; }

.contact-faq { padding: 0 0 4rem; }
.contact-faq__list { max-width: 52rem; }
.contact-faq .acc details {
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 0;
}
.contact-faq .acc summary {
  padding: 1.1rem 0;
  font-size: 1.02rem;
}
.contact-faq .acc details p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  line-height: 1.65;
}

[data-contact-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1),
    transform .8s cubic-bezier(.22, 1, .36, 1);
}
[data-contact-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .contact-hero__badge,
  .contact-hero__title,
  .contact-hero__lead,
  .contact-hero__actions,
  [data-contact-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.article { padding-bottom: 3rem; }
.article .cover { width: 100%; max-height: 420px; object-fit: cover; border-radius: 1.5rem; }
.prose { font-size: 1.05rem; }
.prose h2, .prose h3 { font-family: var(--display); }

/* About */
.about-hero {
  position: relative;
  padding: 2.8rem 0 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf7 55%, #fff 100%);
}
.about-hero__glow {
  position: absolute;
  inset: -18% -10% auto;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 125, 102, .22), transparent 68%);
  pointer-events: none;
}
.about-hero__inner {
  position: relative;
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding-bottom: 2.2rem;
}
.about-hero__badge {
  opacity: 0;
  transform: translate3d(0, .6rem, 0);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}
.about-hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.05rem, 5.6vw, 3.55rem);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.03em;
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition:
    opacity .85s cubic-bezier(.22, 1, .36, 1) .08s,
    transform .85s cubic-bezier(.22, 1, .36, 1) .08s;
}
.about-hero__lead {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.65;
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition:
    opacity .85s cubic-bezier(.22, 1, .36, 1) .16s,
    transform .85s cubic-bezier(.22, 1, .36, 1) .16s;
}
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-top: .35rem;
  opacity: 0;
  transform: translate3d(0, .8rem, 0);
  transition:
    opacity .85s cubic-bezier(.22, 1, .36, 1) .24s,
    transform .85s cubic-bezier(.22, 1, .36, 1) .24s;
}
.about-hero.is-in .about-hero__badge,
.about-hero.is-in .about-hero__title,
.about-hero.is-in .about-hero__lead,
.about-hero.is-in .about-hero__actions {
  opacity: 1;
  transform: none;
}
.about-hero__band {
  position: relative;
  width: 100%;
  height: clamp(200px, 36vw, 380px);
  margin-top: .4rem;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 1.5rem, 0);
  transition:
    opacity 1s cubic-bezier(.22, 1, .36, 1) .28s,
    transform 1s cubic-bezier(.22, 1, .36, 1) .28s;
}
.about-hero.is-in .about-hero__band {
  opacity: 1;
  transform: none;
}
.about-hero__band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, #fff 100%);
  pointer-events: none;
}
.about-hero__band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.about-stats {
  list-style: none;
  margin: 0 auto;
  padding: 1.8rem 0 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 720px;
  border-bottom: 1px solid var(--line);
}
.about-stat { text-align: center; padding: .35rem .4rem; }
.about-stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.about-stat span { color: var(--muted); font-size: .82rem; }

.about-story {
  display: grid;
  gap: 2rem;
  padding: 3.5rem 0 3rem;
  align-items: center;
}
.about-story__copy .kicker { margin-bottom: .15rem; }
.about-story__copy h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.8vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: .55rem 0 1.15rem;
}
.about-story__copy > p {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-story__cms { margin-top: 1.25rem; color: var(--muted); }
.about-promise {
  list-style: none;
  margin: 0;
  padding: 2rem 1.6rem;
  border-radius: 0;
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 1.35rem;
  min-height: 100%;
  align-content: center;
}
.about-promise li {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
  padding-left: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 1.15rem;
}
.about-promise li:first-child {
  border-top: 0;
  padding-top: 0;
}
.about-promise li::before { content: none; }

.about-pillars { padding: 1rem 0 3.5rem; }
.about-pillar-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.about-pillar-grid article {
  padding: 1.5rem 0 1.6rem;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: color .25s ease;
}
.about-pillar-grid article:hover h3 { color: var(--coral-hot); }
.about-pillar-grid b {
  display: block;
  font-family: var(--display);
  color: var(--coral);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: .45rem;
}
.about-pillar-grid h3 {
  margin: 0 0 .55rem;
  font-size: 1.15rem;
  transition: color .25s ease;
}
.about-pillar-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
  max-width: 28rem;
}

.about-services { padding-bottom: 3.5rem; }
.about-svc-row {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.about-svc {
  display: block;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left .25s ease, color .25s ease;
}
.about-svc:hover { padding-left: .35rem; }
.about-svc:hover h3 { color: var(--coral-hot); }
.about-svc h3 {
  margin: 0 0 .2rem;
  font-size: 1.02rem;
  transition: color .25s ease;
}
.about-svc p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.about-cta {
  padding: 0 0 4.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255, 125, 102, .14), transparent 65%),
    linear-gradient(180deg, #fffaf7 0%, #fff 100%);
}
.about-cta__inner {
  text-align: center;
  padding: 3rem 0 1rem;
  display: grid;
  gap: .85rem;
  justify-items: center;
}
.about-cta__inner h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.6vw, 2.15rem);
  margin: 0;
  max-width: 22ch;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.about-cta__inner > p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.65;
}

[data-about-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1),
    transform .8s cubic-bezier(.22, 1, .36, 1);
}
[data-about-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .about-story {
    grid-template-columns: 1.35fr .95fr;
    gap: 3rem;
    padding: 4.25rem 0 3.5rem;
  }
  .about-promise { padding: 2.4rem 2rem; }
  .about-pillar-grid { grid-template-columns: repeat(2, 1fr); gap: 0 2.5rem; }
  .about-pillar-grid article {
    padding: 1.6rem 0 1.75rem;
  }
  .about-svc-row { grid-template-columns: repeat(2, 1fr); gap: 0 2.5rem; }
}
@media (min-width: 980px) {
  .about-pillar-grid { grid-template-columns: repeat(4, 1fr); gap: 0 2rem; }
  .about-svc-row { grid-template-columns: repeat(3, 1fr); gap: 0 2rem; }
  .about-hero__band { height: 400px; }
}
@media (prefers-reduced-motion: reduce) {
  .about-hero__badge,
  .about-hero__title,
  .about-hero__lead,
  .about-hero__actions,
  .about-hero__band,
  [data-about-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.wizard {
  padding-bottom: 4.5rem;
}
.wizard-shell {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
.wizard-aside {
  background: #0b1220;
  color: #e5e7eb;
  border-radius: 1.5rem;
  padding: 1.6rem 1.4rem;
  display: grid;
  gap: .85rem;
}
.wizard-aside-kicker {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(255, 125, 102, .18);
  color: #ffd4cb;
  font-size: .78rem;
  font-weight: 700;
}
.wizard-aside h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
}
.wizard-aside > p { margin: 0; color: #9ca3af; line-height: 1.55; }
.wizard-perks {
  margin: .2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .55rem;
}
.wizard-perks li {
  position: relative;
  padding-left: 1.35rem;
  font-size: .92rem;
  font-weight: 600;
  color: #f3f4f6;
}
.wizard-perks li::before {
  content: '';
  position: absolute;
  left: 0; top: .45rem;
  width: .55rem; height: .55rem;
  border-radius: 999px;
  background: var(--coral);
}
.wizard-aside-plans {
  margin-top: .4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: .35rem;
}
.wizard-aside-plans span {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 700;
}
.wizard-aside-plans em {
  font-style: normal;
  font-size: .88rem;
  color: #d1d5db;
}

.wizard-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 1.25rem 1.15rem 1.4rem;
  box-shadow: 0 12px 36px rgba(17, 24, 39, .05);
  min-width: 0;
}
.wizard-progress {
  margin-bottom: 1rem;
}
.wizard-progress-bar {
  height: .35rem;
  border-radius: 999px;
  background: var(--paper-2);
  overflow: hidden;
}
.wizard-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--coral-hot));
  transition: width .35s ease;
}
.wizard-nav {
  display: grid;
  grid-template-columns: repeat(var(--wizard-steps, 4), minmax(0, 1fr));
  gap: .45rem;
  margin: 0 0 .85rem;
  padding: 0;
  list-style: none;
}
.wizard-nav li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-align: center;
  padding: .55rem .35rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  cursor: default;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.wizard-nav li.is-done {
  cursor: pointer;
  color: var(--ink);
  background: #fff;
  border-color: #fecaca;
}
.wizard-nav li.is-on {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 8px 18px rgba(17, 24, 39, .16);
}
.wizard-nav-num {
  width: 1.55rem; height: 1.55rem;
  border-radius: 999px;
  display: grid; place-items: center;
  font-size: .78rem;
  background: rgba(17,24,39,.08);
  color: inherit;
}
.wizard-nav li.is-on .wizard-nav-num {
  background: var(--coral);
  color: #fff;
}
.wizard-nav li.is-done .wizard-nav-num {
  background: rgba(255, 125, 102, .18);
  color: var(--coral-hot);
}
.wizard-nav-label {
  display: none;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wizard-meta {
  margin: 0 0 1rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--coral);
}
.wizard-pane {
  display: none;
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.wizard-pane.is-on { display: block; animation: wizardIn .28s ease; }
@keyframes wizardIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.wizard-pane legend {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
  padding: 0;
  margin: 0 0 .35rem;
}
.wizard-sub {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 42ch;
}
.wizard-fields { display: grid; gap: 1.1rem; }
.wizard-fields--grid {
  grid-template-columns: 1fr;
}
.field { display: grid; gap: .4rem; font-weight: 700; }
.field-label {
  color: #374151;
  font-size: .9rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .4rem;
}
.field-help {
  color: var(--muted);
  font-weight: 500;
  font-size: .78rem;
}
.field input, .field textarea, .field select {
  border: 1px solid var(--line);
  border-radius: .95rem;
  padding: .85rem 1rem;
  font: inherit;
  font-weight: 500;
  background: var(--paper-2);
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
  cursor: pointer;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: #fda4a4;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 125, 102, .16);
}
.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select {
  border-color: #f87171;
  background: #fff5f5;
}
.field-error {
  margin: 0;
  color: #b91c1c;
  font-size: .8rem;
  font-weight: 700;
}
.word-count {
  margin-top: .15rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  text-align: right;
  transition: color .15s ease;
}
.word-count.is-warn { color: #c2410c; }
.word-count.is-over { color: #b91c1c; }
.btn[disabled],
.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
  pointer-events: none;
}
.choices {
  display: grid;
  gap: .65rem;
}
.choices--grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.choices--multi {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.choices--plans {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.choice { display: block; cursor: pointer; margin: 0; position: relative; }
.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px; height: 1px;
}
.choice-card {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-height: 3.2rem;
  padding: .85rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: var(--paper-2);
  font-weight: 700;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease, transform .15s ease;
}
.choice-check {
  flex: 0 0 auto;
  width: 1.15rem; height: 1.15rem;
  border-radius: 999px;
  border: 2px solid #d1d5db;
  background: #fff;
  position: relative;
}
.choices--multi .choice-check { border-radius: .35rem; }
.choice:hover .choice-card {
  border-color: #fda4a4;
  background: #fff;
}
.choice input:focus-visible + .choice-card {
  box-shadow: 0 0 0 4px rgba(255, 125, 102, .18);
}
.choice input:checked + .choice-card {
  border-color: var(--coral);
  background: #fff7f5;
  box-shadow: 0 8px 20px rgba(255, 125, 102, .14);
  transform: translateY(-1px);
}
.choice input:checked + .choice-card .choice-check {
  border-color: var(--coral);
  background: var(--coral);
}
.choice input:checked + .choice-card .choice-check::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: .35rem; height: .55rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -58%) rotate(45deg);
}
.field.is-invalid .choice-card {
  border-color: #fecaca;
}
.choice-wrap {
  position: relative;
  display: grid;
}
.choice-wrap--plan .choice-card {
  padding-right: 2.6rem;
  align-items: flex-start;
}
.choice-text {
  display: grid;
  gap: .2rem;
  line-height: 1.25;
}
.choice-text small {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
}
.choice-info {
  position: absolute;
  top: .55rem;
  right: .55rem;
  z-index: 2;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  font-style: italic;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  padding: 0;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.choice-info:hover,
.choice-info:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  outline: none;
}
.choice input:checked ~ .choice-card .choice-text small,
.choice-wrap--plan:has(input:checked) .choice-text small {
  color: #9a3412;
}

.plan-modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(520px, calc(100vw - 2rem));
  width: 100%;
}
.plan-modal::backdrop {
  background: rgba(11, 18, 32, .55);
  backdrop-filter: blur(4px);
}
.plan-modal-card {
  position: relative;
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.5rem 1.35rem 1.35rem;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(17, 24, 39, .22);
  display: grid;
  gap: .7rem;
}
.plan-modal-close {
  position: absolute;
  top: .7rem;
  right: .8rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.plan-modal-close:hover { background: #e5e7eb; }
.plan-modal-badge {
  margin: 0;
  width: fit-content;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--peach);
  color: var(--peach-ink);
  font-size: .75rem;
  font-weight: 800;
}
.plan-modal-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -.02em;
  padding-right: 2rem;
}
.plan-modal-sub {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}
.plan-modal-range {
  margin: 0;
  font-weight: 800;
  color: var(--ink);
}
.plan-modal-body {
  margin: 0;
  color: #374151;
  line-height: 1.55;
}
.plan-modal-features {
  margin: .2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .65rem;
  max-height: min(40vh, 280px);
  overflow: auto;
}
.plan-modal-features li {
  padding: .75rem .85rem;
  border-radius: .9rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: grid;
  gap: .2rem;
}
.plan-modal-features strong {
  font-size: .92rem;
  color: var(--ink);
}
.plan-modal-features span {
  font-size: .86rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}
.plan-modal-card .btn {
  margin-top: .35rem;
  width: 100%;
}
.wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .7rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.wizard-actions .btn { min-width: 7.5rem; }
.alert {
  background: #fee2e2;
  color: #991b1b;
  padding: .75rem 1rem;
  border-radius: .9rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.thanks { min-height: 60vh; display: grid; place-content: center; text-align: center; gap: 1rem; }
.thanks h1 { font-family: var(--display); font-size: 2.4rem; margin: 0; }
.thanks .kicker {
  margin: 0;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 800;
}
.thanks .lead {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.05rem;
}
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-top: .5rem;
}

.notfound {
  min-height: 62vh;
  display: grid;
  place-content: center;
  text-align: center;
  gap: .85rem;
  padding: 3rem 0 4rem;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 125, 102, .12), transparent 70%),
    var(--paper);
}
.notfound .kicker {
  justify-self: center;
  margin: 0;
}
.notfound-code {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--ink);
  opacity: .08;
}
.notfound h1 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  margin: -.5rem 0 0;
  line-height: 1.2;
}
.notfound .lead {
  margin: 0 auto;
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.6;
}
.notfound-hint {
  margin: .6rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}
.notfound-hint a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.notfound-hint a:hover { color: var(--coral-hot); }

@media (min-width: 720px) {
  .wizard-nav-label { display: block; }
  .wizard-fields--grid {
    grid-template-columns: 1fr 1fr;
  }
  .wizard-fields--grid .field--choices,
  .wizard-fields--grid .field:has(textarea),
  .wizard-fields--grid .field:has(select) {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .wizard-shell {
    grid-template-columns: minmax(240px, .9fr) minmax(0, 1.4fr);
    gap: 1.5rem;
  }
  .wizard-aside {
    position: sticky;
    top: 5.5rem;
    padding: 1.8rem 1.55rem;
  }
  .wizard-main { padding: 1.55rem 1.5rem 1.7rem; }
}

.foot {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0b1220;
  color: #d1d5db;
  padding: 3.5rem 0 7.25rem;
  margin-top: 2.5rem;
  border-top-left-radius: 1.75rem;
  border-top-right-radius: 1.75rem;
}
.foot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 125, 102, .75), transparent);
  z-index: 2;
  pointer-events: none;
}
.foot-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.foot-bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .2;
  will-change: transform;
  animation: foot-blob-drift var(--dur, 18s) ease-in-out infinite alternate;
}
.foot-bg__blob--1 {
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  background: radial-gradient(circle, #5ee7df, #3b82f6);
  top: -42%;
  left: -18%;
  --dur: 22s;
}
.foot-bg__blob--2 {
  width: min(560px, 80vw);
  height: min(560px, 80vw);
  background: radial-gradient(circle, #b490f5, #ff7d66);
  bottom: -48%;
  right: -14%;
  --dur: 17s;
  animation-delay: -8s;
}
.foot-bg__blob--3 {
  width: min(380px, 70vw);
  height: min(380px, 70vw);
  background: radial-gradient(circle, #ffd27f, #f7a8c4);
  top: 28%;
  left: 42%;
  --dur: 25s;
  animation-delay: -13s;
}
@keyframes foot-blob-drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(48px, -32px) scale(1.08); }
  66% { transform: translate(-32px, 48px) scale(.94); }
  100% { transform: translate(24px, 24px) scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .foot-bg__blob { animation: none; }
}
.foot-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 2rem));
  margin-inline: auto;
}
.foot-top {
  display: grid;
  gap: 2.25rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.foot-brand { max-width: 28rem; }
.foot-logo {
  display: inline-block;
  margin-bottom: 1rem;
  transition: opacity .2s ease;
}
.foot-logo:hover { opacity: .85; }
.foot-logo img { height: 36px; width: auto; }
.foot-tag {
  margin: 0 0 1.35rem;
  color: #9ca3af;
  line-height: 1.6;
  font-size: 1rem;
  max-width: 28ch;
}
.foot-cta { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.foot-cta .btn,
.foot-cta .btn-coral,
.foot .btn-coral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
}
.foot-cta .btn:hover,
.foot-cta .btn-coral:hover,
.foot .btn-coral:hover {
  color: #fff !important;
}
.foot-login {
  display: inline-block;
  color: #e5e7eb;
  font-weight: 600;
  text-decoration: none;
  font-size: .92rem;
  padding: .55rem .2rem;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.foot-login:hover {
  color: #fff;
  border-bottom-color: rgba(255, 125, 102, .7);
}
.foot-col { display: grid; gap: .55rem; align-content: start; }
.foot-col strong {
  color: #fff;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-weight: 800;
}
.foot-col > a {
  display: block;
  text-decoration: none;
  color: #9ca3af;
  margin: 0;
  font-size: .95rem;
  padding: .1rem 0;
  transition: color .2s ease, transform .2s ease;
}
.foot-col > a:hover {
  color: #fff;
  transform: translateX(3px);
}
.foot-contact-line {
  display: grid !important;
  gap: .2rem;
  margin-bottom: .65rem !important;
  text-decoration: none;
  color: #d1d5db !important;
  transform: none !important;
}
.foot-contact-line:hover { color: #fff !important; }
.foot-contact-line span,
.foot-address__text > span {
  display: block;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 700;
}
.foot-address {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  margin: .55rem 0 0;
  color: #d1d5db !important;
  font-size: .95rem;
  line-height: 1.55;
}
.foot-address__text {
  display: block;
  min-width: 0;
  flex: 1;
}
.foot-address .maps-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 125, 102, .2);
  border: 1px solid rgba(255, 125, 102, .45);
  transition: background .2s ease, transform .2s ease;
}
.foot-address:hover .maps-icon {
  background: var(--coral);
  border-color: var(--coral);
  transform: scale(1.05);
}

.contact-channel--maps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.contact-channel__main {
  display: grid;
  gap: .2rem;
  min-width: 0;
  flex: 1;
}
.contact-channel--maps .maps-icon {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--coral-hot);
  background: var(--peach);
  border: 1px solid rgba(255, 125, 102, .35);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.contact-channel--maps:hover .maps-icon {
  background: var(--coral);
  color: #fff;
  transform: scale(1.05);
}
.foot-bot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.4rem;
  font-size: .85rem;
  color: #6b7280;
}
.foot-bot-end {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.foot-bot-end > a {
  color: #9ca3af;
  text-decoration: none;
  display: inline-block;
  transition: color .2s ease;
}
.foot-bot-end > a:hover { color: #fff; }
.foot .lang {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .12);
}
.foot .lang a { color: #9ca3af; display: inline-block; margin: 0; }
.foot .lang a.is-on { background: #fff; color: #0b1220; }

.foot-top-btn {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.foot-top-btn:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px);
}

.to-top {
  position: fixed;
  right: .9rem;
  bottom: calc(.7rem + 4.4rem + env(safe-area-inset-bottom, 0px));
  z-index: 34;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, .6rem, 0);
  transition:
    opacity .25s ease,
    transform .25s cubic-bezier(.22, 1, .36, 1),
    background .2s ease;
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.to-top:hover { background: var(--coral-hot); }
.to-top[hidden] { display: none !important; }
@media (prefers-reduced-motion: reduce) {
  .to-top { transition: none; }
}
.dock {
  position: fixed; left: .7rem; right: .7rem; bottom: .7rem; z-index: 30;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .2rem;
  background: rgba(17,24,39,.94); color: #fff; border-radius: 1.2rem; padding: .45rem;
  backdrop-filter: blur(12px);
}
.dock a {
  color: #fff; text-decoration: none; text-align: center;
  font-size: .68rem; font-weight: 700; padding: .45rem .1rem;
  border-radius: .75rem;
}
.dock a.is-on:not(.dock-cta) {
  background: rgba(255,255,255,.12);
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--coral);
}
.dock-cta { background: var(--coral); border-radius: .9rem; }
.dock-cta.is-on { box-shadow: 0 0 0 2px #fff inset; }
.cookie {
  position: fixed;
  left: .75rem;
  right: .75rem;
  bottom: calc(.7rem + 4.2rem + env(safe-area-inset-bottom, 0px));
  z-index: 45;
  max-width: 420px;
  margin-inline: auto;
  display: grid;
  gap: .75rem;
  padding: .85rem 1rem;
  background: rgba(17, 24, 39, .96);
  color: #f3f4f6;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translate3d(0, .75rem, 0);
  pointer-events: none;
  transition:
    opacity .22s ease,
    transform .22s cubic-bezier(.22, 1, .36, 1);
}
.cookie.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.cookie[hidden] { display: none !important; }
.cookie__body { min-width: 0; }
.cookie__title {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 .25rem;
}
.cookie__text {
  margin: 0;
  font-size: .84rem;
  line-height: 1.45;
  color: #d1d5db;
}
.cookie__text a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.cookie__btn {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: .84rem;
  border-radius: 999px;
  padding: .55rem .9rem;
  transition: background .2s ease, transform .2s ease;
}
.cookie__btn--ok {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 125, 102, .35);
}
.cookie__btn--ok:hover { background: var(--coral-hot); }
.cookie__btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
}
.cookie__btn--ghost:hover { background: rgba(255, 255, 255, .14); }
@media (prefers-reduced-motion: reduce) {
  .cookie { transition: none; transform: none; }
}

@media (min-width: 880px) {
  .nav-links, .nav-login, .nav-end .btn { display: flex; }
  .burger, .dock { display: none; }
  .cookie {
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
    margin-inline: 0;
    max-width: 380px;
    grid-template-columns: 1fr;
  }
  .to-top {
    right: 1.35rem;
    bottom: 1.35rem;
  }
  .foot { padding-bottom: 2.75rem; }
  .foot-top { grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 2.75rem; }
  .carousel-wrapper { height: 400px; margin: 2.4rem 0 1rem; }
  .carousel-container { width: 130%; bottom: -340px; height: 720px; }
  .carousel-card { flex-basis: 260px; height: 310px; }
  .hero-trust { grid-template-columns: repeat(4, 1fr); padding: 2rem 0 3rem; margin-top: 0; }
  .intro, .contact-layout, .gift, .split, .jobs { grid-template-columns: 1fr 1fr; }
  .contact-form__row { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 1.75rem 1.5rem; }
  .contact-layout { gap: 3rem; padding-top: 1.5rem; }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
  .values { grid-template-columns: repeat(4, 1fr); }
  .orbit-cards { grid-template-columns: repeat(3, 1fr); }
  .plan-row { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .post-grid { grid-template-columns: repeat(3, 1fr); }
  .method { grid-template-columns: repeat(3, 1fr); gap: 0 2rem; border-bottom: 0; padding-bottom: 2.5rem; }
  .method article {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 0 0 0 1.4rem;
  }
  .method article:first-child { border-left: 0; padding-left: 0; }
  .svc { grid-template-columns: 1.05fr .95fr; gap: 2.6rem; padding: 3.2rem 0; }
  .svc--flip .svc__copy { order: 2; }
  .svc--flip .svc__media { order: 1; }
  .audiences-list { grid-template-columns: repeat(2, 1fr); gap: 0 2.5rem; }
  .features-arc { grid-template-columns: repeat(4, 1fr); }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .aris-features { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .aris-features article { border-top: 0; border-left: 1px solid var(--line); padding: 0 0 0 1.2rem; }
  .aris-features article:first-child { border-left: 0; padding-left: 0; }
  .aris-ind-grid { grid-template-columns: repeat(3, 1fr); }
  .aris-step-list { grid-template-columns: repeat(5, 1fr); gap: .8rem; }
  .aris-step-list li { flex-direction: column; align-items: flex-start; gap: .8rem; min-height: 100%; }
  .aris-cta { grid-template-columns: 1.4fr .6fr; padding: 2.2rem; }
  .choices { grid-template-columns: 1fr 1fr; }
}

/* Hero carousel entrance (first load only) */
.carousel-wrapper.carousel-enter {
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1),
    transform .9s cubic-bezier(.22, 1, .36, 1);
}
.carousel-wrapper.carousel-enter.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-wrapper.carousel-enter {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

