*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

* { -webkit-tap-highlight-color: transparent; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--color-canvas);
  color: var(--color-ice);
  font-family: var(--font-display);
  font-weight: var(--font-weight-regular);
  font-feature-settings: "ss01" 1;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg, video { display: block; max-width: 100%; }

:focus-visible { outline: 2px solid var(--brand-violet-lt); outline-offset: 4px; border-radius: 4px; }

.skip-link {
  position: fixed; left: var(--gutter); top: -60px; z-index: 200;
  padding: var(--spacing-8) var(--spacing-14); border-radius: var(--radius-xl);
  background: var(--color-surface); font-size: var(--text-label); font-weight: 500; text-transform: uppercase;
}
.skip-link:focus { top: var(--spacing-12); }

h1, h2, h3, h4, .btn, .nav__links a, .nav__toggle, .menu__links a {
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
}
h1, h2 { font-weight: var(--font-weight-medium); }

.grad {
  font-style: normal;
  background: var(--gradient-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.line { display: block; overflow: hidden; padding-block: .14em; margin-block: -.14em; }
.line__in { display: block; will-change: transform; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--spacing-8);
  font-size: var(--text-label); line-height: 1; white-space: nowrap;
  transition: background-color .35s ease, border-color .35s ease, color .35s ease, transform .35s ease;
}
.btn--ghost {
  padding: 13px var(--spacing-24);
  border: 1px solid var(--color-ice); border-radius: var(--radius-buttons-outlined);
}
@media (hover: hover) {
  .btn--ghost:hover { background: var(--color-ice); color: var(--color-canvas); }
}

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(var(--spacing-14) + env(safe-area-inset-top)) var(--gutter) var(--spacing-14);
  border-bottom: 1px solid transparent;
  transition: background-color .45s ease, border-color .45s ease, backdrop-filter .45s ease;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, .62);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, .07);
}
.nav__brand { display: inline-flex; align-items: center; gap: var(--spacing-10); }
.nav__mark { width: 26px; height: 26px; }
.nav__wordmark { font-size: 21px; font-weight: 600; letter-spacing: -.01em; line-height: 1; }

.nav__links { display: none; }
.nav__toggle {
  position: relative; z-index: 61;
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, .05);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  transition: border-color .3s ease, background-color .3s ease;
}
.nav__toggle:active { background: rgba(255, 255, 255, .12); }
.nav__toggle[aria-expanded="true"] { border-color: var(--glass-border-hover); }
.nav__bars { position: relative; display: block; width: 16px; height: 9px; }
.nav__bars i {
  position: absolute; left: 0; right: 0; height: 1.5px; border-radius: 2px; background: var(--color-ice);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), top .4s cubic-bezier(.2, .8, .2, 1);
}
.nav__bars i:nth-child(1) { top: 0; }
.nav__bars i:nth-child(2) { top: calc(100% - 1.5px); }
.nav__toggle[aria-expanded="true"] .nav__bars i { top: calc(50% - .75px); }
.nav__toggle[aria-expanded="true"] .nav__bars i:nth-child(1) { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars i:nth-child(2) { transform: rotate(-45deg); }
.nav__toggle [data-label-open], .nav__toggle [data-label-close] {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.nav__toggle [data-label-close] { display: none; }
.nav__toggle[aria-expanded="true"] [data-label-open] { display: none; }
.nav__toggle[aria-expanded="true"] [data-label-close] { display: inline; }

.menu {
  --menu-link-size: clamp(21px, min(6vw, 4.6svh), 34px);
  --menu-link-pad: var(--spacing-12);
  --menu-cta-pad: 13px;
  --menu-arrow: 20px;

  position: fixed; inset: 0; z-index: 55; overflow-y: auto; overscroll-behavior: contain;
  display: flex; flex-direction: column; justify-content: space-between; gap: var(--spacing-31);
  padding: calc(96px + env(safe-area-inset-top)) var(--gutter) calc(var(--spacing-31) + env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, .93);
  -webkit-backdrop-filter: blur(24px) saturate(1.2); backdrop-filter: blur(24px) saturate(1.2);
  opacity: 0; visibility: hidden; transition: opacity .45s ease, visibility 0s linear .45s;
}
.menu.is-open { opacity: 1; visibility: visible; transition: opacity .45s ease; }

.menu-open .nav { background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; border-bottom-color: transparent; }

.menu__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.menu__glow::before, .menu__glow::after { content: ""; position: absolute; border-radius: 50%; }
.menu__glow::before {
  width: 92vw; height: 92vw; max-width: 560px; max-height: 560px; right: -38%; top: 4%;
  background: radial-gradient(circle, rgba(109, 40, 255, .5), transparent 68%);
}
.menu__glow::after {
  width: 84vw; height: 84vw; max-width: 500px; max-height: 500px; left: -34%; bottom: -8%;
  background: radial-gradient(circle, rgba(42, 95, 240, .42), rgba(212, 35, 176, .2) 55%, transparent 70%);
}

.menu__links, .menu__foot { position: relative; z-index: 1; }
.menu__links { display: grid; }
.menu__links a {
  display: flex; align-items: baseline; gap: var(--spacing-14);
  padding: var(--menu-link-pad) 0; border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: var(--menu-link-size); line-height: var(--leading-heading);
  transform: translateY(18px); opacity: 0;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1), opacity .5s ease;
}
.menu__label { flex: 1; padding-block: .18em; margin-block: -.18em; transition: opacity .3s ease; }
.menu__arrow {
  flex: none; align-self: center; width: var(--menu-arrow); height: var(--menu-arrow); color: var(--color-steel); opacity: .5;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), opacity .3s ease, color .3s ease;
}
.menu__links a:active .menu__label { opacity: .65; }
.menu__links a:active .menu__arrow, .menu__links a.is-active .menu__arrow { opacity: 1; transform: translateX(4px); color: var(--brand-violet-lt); }
.menu__links a.is-active .menu__label {
  background: var(--gradient-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.menu__foot {
  display: grid; gap: var(--spacing-24);
  transform: translateY(18px); opacity: 0;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1), opacity .5s ease;
}
.menu__cta { width: 100%; padding: var(--menu-cta-pad) var(--spacing-24); }
.menu__cta:active { background: var(--color-ice); color: var(--color-canvas); }
.menu__tag {
  font-size: var(--text-micro); font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-steel); text-align: center;
}

.menu.is-open .menu__links a, .menu.is-open .menu__foot { transform: none; opacity: 1; }
.menu.is-open .menu__links a:nth-child(1) { transition-delay: .06s; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: .13s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: .2s; }
.menu.is-open .menu__foot { transition-delay: .3s; }

@media (min-width: 768px) {
  .menu { --menu-link-size: clamp(32px, 4.8vw, 46px); --menu-link-pad: var(--spacing-14); --menu-arrow: 22px; padding-top: calc(120px + env(safe-area-inset-top)); }
  .menu__links, .menu__foot { max-width: 640px; }
}

@media (max-height: 520px) {
  .menu { gap: var(--spacing-12); padding-top: calc(72px + env(safe-area-inset-top)); padding-bottom: calc(var(--spacing-14) + env(safe-area-inset-bottom)); }
  .menu { --menu-link-size: clamp(20px, 7svh, 28px); --menu-link-pad: var(--spacing-6); --menu-cta-pad: 11px; --menu-arrow: 20px; }
  .menu__foot { gap: var(--spacing-10); }
  .menu__tag { display: none; }
}

.hero {
  position: relative; overflow: hidden;
  height: 100vh; height: 100svh; min-height: 560px;
  background: var(--color-canvas);
}

.hero__glow {
  position: absolute; z-index: 0; pointer-events: none;
  left: 50%; top: 58%; width: 130vw; height: 90vw; max-height: 80vh;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(closest-side at 32% 55%, rgba(42, 95, 240, .42), transparent 72%),
    radial-gradient(closest-side at 66% 42%, rgba(109, 40, 255, .48), transparent 72%),
    radial-gradient(closest-side at 54% 72%, rgba(212, 35, 176, .3), transparent 72%);
  filter: blur(28px); opacity: .55;
}

.hero__media {
  position: absolute; z-index: 1; left: 0; right: 0; top: 28%; bottom: 0;
  transform-origin: 50% 55%;
  -webkit-mask-image: radial-gradient(ellipse closest-side at 50% 50%, #000 48%, transparent 100%);
          mask-image: radial-gradient(ellipse closest-side at 50% 50%, #000 48%, transparent 100%);
}
@media (max-width: 593px) {
  .hero__media { top: clamp(28%, calc(.3825 * min(100vw, 447px) + 274px - 25svh), 46%); }
}
.hero__video, .hero__poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__video { mix-blend-mode: screen; opacity: 0; }
.hero__video.is-ready { opacity: 1; }

.hero__poster { mix-blend-mode: screen; }
.hero.has-video .hero__poster { display: none; }
.hero.is-static .hero__video { display: none; }

.hero__shade {
  position: absolute; inset: auto 0 0 0; height: 46%; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(10, 10, 10, .96) 8%, rgba(10, 10, 10, .55) 55%, transparent 100%);
}

.hero__top {
  position: absolute; z-index: 3; left: var(--gutter); right: var(--gutter);
  top: calc(84px + env(safe-area-inset-top));
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--spacing-10);
  margin-bottom: var(--spacing-18);
  font-size: var(--text-label); font-weight: 500; line-height: 1.1;
  text-transform: uppercase; color: var(--color-steel);
}
.think-dots { display: inline-flex; gap: 4px; }
.think-dots i {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gradient-brand);
  animation: think 1.3s ease-in-out infinite;
}
.think-dots i:nth-child(2) { animation-delay: .18s; }
.think-dots i:nth-child(3) { animation-delay: .36s; }
@keyframes think { 0%, 80%, 100% { opacity: .25; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }

.hero__title {
  font-size: var(--text-display); line-height: var(--leading-display);
  text-transform: uppercase;
}

.hero__foot {
  position: absolute; z-index: 3; left: var(--gutter); right: var(--gutter);
  bottom: calc(var(--spacing-31) + env(safe-area-inset-bottom));
  display: grid; gap: var(--spacing-24); justify-items: start;
}
.hero__lead { max-width: 34ch; font-size: 16px; line-height: 1.35; text-wrap: pretty; color: rgba(238, 241, 250, .78); }

.hero__hint { display: none; }

:root {
  --purple: #8A2BE2;
  --purple-bright: #B200FF;
  --cyan: #00BFFF;
  --text: #FFFFFF;
  --text-soft: rgba(255, 255, 255, 0.74);
  --border-glass: rgba(255, 255, 255, 0.09);
  --glass: rgba(255, 255, 255, 0.035);
  --gradient: linear-gradient(135deg, var(--purple) 0%, var(--purple-bright) 45%, var(--cyan) 100%);
  --radius-lg: 22px;
  --container: 1200px;
}

.sr-only-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.solutions, .site-footer {
  position: relative; z-index: 5;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 400; line-height: 1.6;
  font-feature-settings: normal; text-transform: none; color: var(--text);
}
.solutions { background: linear-gradient(to bottom, var(--color-canvas) 0, #000 140px); scroll-margin-top: 24px; }
.site-footer { background: #000; }
.solutions h3, .logo-text { font-family: 'Space Grotesk', 'Inter', sans-serif; text-transform: none; }
.site-footer h4 { text-transform: none; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 26px; height: 26px; flex-shrink: 0; }
.logo-text { font-size: 1.25rem; font-weight: 600; letter-spacing: 0.01em; }

.cta-wrap .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 600; white-space: nowrap; cursor: pointer; text-transform: none; line-height: 1.6;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.cta-wrap .btn-cta {
  padding: 18px 52px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.45), 0 0 60px rgba(0, 191, 255, 0.22);
}
.cta-wrap .btn-cta:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 0 40px rgba(178, 0, 255, 0.6), 0 0 80px rgba(0, 191, 255, 0.35);
}

.solutions { padding: 24px 20px 90px; }
.solutions-inner { max-width: var(--container); margin: 0 auto; }

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(178, 0, 255, 0.45);
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.22), 0 0 55px rgba(0, 191, 255, 0.14);
}

.card-tag {
  position: absolute;
  top: -12px;
  left: 16px;
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
}

.card-featured .card-tag {
  display: none;
  top: 0;
  left: 0;
  margin-bottom: 14px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.18), rgba(0, 191, 255, 0.18));
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
}
.card p { color: var(--text-soft); font-size: 0.96rem; }

.card-featured {
  border-color: rgba(0, 191, 255, 0.28);
  box-shadow: 0 0 34px rgba(138, 43, 226, 0.16);
  position: relative;
  overflow: visible !important;
  padding-top: 64px;
}
.card-featured:hover {
  box-shadow: 0 0 34px rgba(138, 43, 226, 0.3), 0 0 60px rgba(0, 191, 255, 0.2);
}

.card-mascot {
  position: absolute;
  top: -128px;
  left: 50%;
  transform: translateX(-50%);
  width: 235px;
  height: auto;
  z-index: 0;
  pointer-events: none;

  filter: drop-shadow(0 0 25px rgba(138, 43, 226, 0.45));

  -webkit-mask-image: linear-gradient(
      to bottom,
       rgba(0, 0, 0, 0.8) 18%,
      transparent 100%
  );

  mask-image: linear-gradient(
      to bottom,
      black 70%,
      rgba(0, 0, 0, 0.37) 78%,
      transparent 90%
  );
}

.card-featured > *:not(.card-mascot) {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .card-featured .card-tag { display: inline-block; }
  .card-mascot { top: -170px; width: 220px; }
}
@media (min-width: 1024px) {
  .card-featured { transform: translateY(-10px); }
  .card-featured:hover { transform: translateY(-16px); }
}

.cta-wrap { text-align: center; margin-top: 52px; }

.site-footer {
  padding: 56px 20px 28px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 36px;
}
.footer-brand p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.92rem;
  max-width: 320px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-soft); font-size: 0.92rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--container);
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border-glass);
  text-align: center;
  color: var(--text-soft);
  font-size: 0.82rem;
}

@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

.js .line__in { transform: translateY(112%); }
.js .nav, .js .hero__eyebrow, .js .hero__lead, .js .hero__actions, .js .hero__media { opacity: 0; }

.js.is-instant .line__in { transform: none; }
.js.is-instant .nav, .js.is-instant .hero__eyebrow, .js.is-instant .hero__lead,
.js.is-instant .hero__actions, .js.is-instant .hero__media { opacity: 1; }

.solutions .card { translate: 0 var(--reveal-y, 0px); }

.js .solutions .card, .js .solutions .cta-wrap,
.js .solutions .card .card-icon, .js .solutions .card h3, .js .solutions .card p { opacity: 0; }

.js.no-reveal .solutions .card, .js.no-reveal .solutions .cta-wrap,
.js.no-reveal .solutions .card .card-icon, .js.no-reveal .solutions .card h3, .js.no-reveal .solutions .card p { opacity: 1; }

.solutions { padding-top: var(--spacing-68); }
.solutions .section-head { display: grid; gap: var(--spacing-24); margin-bottom: var(--spacing-45); }
.solutions .section-title {
  font-family: var(--font-display); font-size: var(--text-heading); font-weight: 500;
  line-height: var(--leading-heading); text-transform: uppercase;
}
.solutions .section-lead { max-width: 36ch; font-size: var(--text-body); line-height: var(--leading-body); color: rgba(238, 241, 250, .72); }

@media (max-width: 767px) {
  .solutions .section-title { font-size: min(var(--text-heading), 7.7vw); }
}

@media (min-width: 768px) {
  .solutions { padding-top: 120px; }
  .solutions .section-head { margin-bottom: 200px; }
}
@media (min-width: 1024px) {
  .solutions { padding-top: clamp(96px, 8svh, 130px); }
  .solutions .section-head { gap: var(--spacing-18); margin-bottom: clamp(48px, 4.6svh, 72px); max-width: calc(50% - 70px); container-type: inline-size; }
  .solutions .section-title { font-size: clamp(28px, 8.1cqw, 80px); }
  .solutions .section-lead { max-width: 48ch; font-size: var(--d-body); line-height: 1.4; text-wrap: balance; }
}
@media (min-width: 1440px) {
  .solutions .card h3 { font-size: clamp(1.2rem, 1.3vw, 1.6rem); }
  .solutions .card p { font-size: clamp(.96rem, .95vw, 1.15rem); }
  .card-mascot { width: 250px; top: -192px; }
}

.js .solutions [data-reveal] { opacity: 0; }
.js.no-reveal .solutions [data-reveal] { opacity: 1; }
.js.no-reveal .solutions .line__in { transform: none; }

.js .tink [data-in], .js .contact [data-in],
.js .contact__card, .js .contact__card > .contact__card-head, .js .contact__card > .contact__row,
.js .contact__card > .field, .js .contact__card > .send, .js .contact__card > .contact__fine { opacity: 0; }
.js.no-reveal .tink [data-in], .js.no-reveal .contact [data-in],
.js.no-reveal .contact__card, .js.no-reveal .contact__card > .contact__card-head, .js.no-reveal .contact__card > .contact__row,
.js.no-reveal .contact__card > .field, .js.no-reveal .contact__card > .send, .js.no-reveal .contact__card > .contact__fine { opacity: 1; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.tink {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 90px var(--gutter);
  background: #000;
}
.tink::before, .contact::before, .site-footer::before {
  content: ""; position: absolute; z-index: -1; left: 0; right: 0; top: 0; height: min(260px, 100%); pointer-events: none;
  background: radial-gradient(ellipse 48% 92% at 50% 8%, rgba(109, 40, 255, .28), rgba(42, 95, 240, .1) 55%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 42%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 42%);
}
.tink__glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 260px, #000 calc(100% - 220px), transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 260px, #000 calc(100% - 220px), transparent 100%);
}
.tink__glow::before, .tink__glow::after { content: ""; position: absolute; border-radius: 50%; }
.tink__glow::before {
  width: 110vw; height: 110vw; max-width: 900px; max-height: 900px; right: -30%; bottom: -8%;
  background: radial-gradient(circle, rgba(109, 40, 255, .32), rgba(42, 95, 240, .14) 45%, transparent 68%);
}
.tink__glow::after {
  width: 70vw; height: 70vw; max-width: 560px; max-height: 560px; left: -25%; top: 4%;
  background: radial-gradient(circle, rgba(212, 35, 176, .16), transparent 68%);
}

.tink__inner { display: grid; gap: 64px; max-width: 1200px; margin: 0 auto; }

.tink__copy { display: grid; gap: var(--spacing-24); align-content: center; justify-items: start; }
.tink__title {
  font-size: var(--text-heading); font-weight: 500; line-height: 1.04;
  text-transform: uppercase; text-wrap: balance;
}
.tink__lead { max-width: 38ch; font-size: var(--text-body); line-height: var(--leading-body); color: rgba(238, 241, 250, .72); }

.tink__list { list-style: none; display: grid; gap: var(--spacing-18); width: 100%; max-width: 560px; margin-top: var(--spacing-6); }
.tink__list li { display: grid; grid-template-columns: 40px 1fr; gap: var(--spacing-14); align-items: start; }
.tink__ico {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: var(--radius-xl);
  color: var(--brand-violet-lt); background: rgba(109, 40, 255, .14); border: 1px solid var(--glass-border);
}
.tink__ico svg { width: 20px; height: 20px; }
.tink__list h3 { font-size: 16px; font-weight: 600; text-transform: none; line-height: 1.3; }
.tink__list p { margin-top: 2px; font-size: var(--text-sm); line-height: 1.5; color: rgba(238, 241, 250, .68); }
.tink__cta { margin-top: var(--spacing-8); }

@media (max-width: 767px) {
  .tink__list, .tink__cta { display: none; }
}

.tink__device { position: relative; display: grid; justify-items: center; gap: var(--spacing-24); margin: 0; }
.tink__device::before {
  content: ""; position: absolute; z-index: -1; left: 50%; top: 44%; width: 120%; aspect-ratio: 1; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(109, 40, 255, .34), rgba(42, 95, 240, .14) 42%, transparent 66%);
}

.phone {
  --u: calc(100cqw / 330);
  position: relative; container-type: inline-size;
  width: min(330px, 86vw); aspect-ratio: 9 / 18.6;
}
.phone__body {
  position: absolute; inset: 0; padding: calc(10 * var(--u)); border-radius: calc(46 * var(--u));
  background: linear-gradient(160deg, #262633 0%, #0d0d13 46%, #191922 100%);
  border: 1px solid rgba(168, 155, 230, .32);
}
.phone__body::before, .phone__body::after { content: ""; position: absolute; width: 3px; border-radius: 2px; background: #2b2b38; }
.phone__body::before { left: -3px; top: 17%; height: 9%; }
.phone__body::after { right: -3px; top: 24%; height: 15%; }

.phone__screen {
  position: relative; height: 100%; display: flex; flex-direction: column; overflow: hidden;
  border-radius: calc(37 * var(--u)); color: var(--color-ice);
  background:
    radial-gradient(120% 55% at 92% 0%, rgba(109, 40, 255, .18), transparent 62%),
    radial-gradient(100% 50% at 0% 100%, rgba(42, 95, 240, .16), transparent 62%),
    #08080d;
}
.phone__screen::after {
  content: ""; position: absolute; left: 50%; bottom: calc(5 * var(--u)); width: calc(96 * var(--u)); height: calc(4 * var(--u));
  transform: translateX(-50%); border-radius: 99px; background: rgba(255, 255, 255, .34);
}
.phone__island {
  position: absolute; z-index: 3; top: calc(9 * var(--u)); left: 50%; width: calc(86 * var(--u)); height: calc(24 * var(--u));
  transform: translateX(-50%); border-radius: 99px; background: #000;
}
.phone__status {
  display: flex; align-items: center; justify-content: space-between; height: calc(40 * var(--u));
  padding: calc(6 * var(--u)) calc(24 * var(--u)) 0; font-size: calc(11.5 * var(--u)); font-weight: 600;
}
.phone__icons { display: inline-flex; align-items: center; gap: calc(5 * var(--u)); }
.phone__icons svg { height: calc(9.5 * var(--u)); width: auto; }

.chat__head {
  display: flex; align-items: center; gap: calc(9 * var(--u));
  padding: calc(8 * var(--u)) calc(12 * var(--u)) calc(10 * var(--u));
  border-bottom: 1px solid rgba(168, 155, 230, .14); background: rgba(255, 255, 255, .03);
}
.chat__back { width: calc(17 * var(--u)); height: calc(17 * var(--u)); flex: none; color: var(--color-steel); }
.chat__avatar {
  flex: none; width: calc(34 * var(--u)); height: calc(34 * var(--u)); border-radius: 50%; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-violet), var(--brand-blue)); border: 1px solid rgba(190, 175, 255, .55);
}
.chat__avatar img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 50% 16%; transform: scale(1.35); transform-origin: 50% 25%; }
.chat__who { display: grid; gap: calc(1 * var(--u)); line-height: 1.15; }
.chat__who b { display: flex; align-items: center; gap: calc(6 * var(--u)); font-size: calc(14 * var(--u)); font-weight: 600; }
.chat__badge {
  font-style: normal; font-size: calc(8.5 * var(--u)); font-weight: 600; letter-spacing: .06em; line-height: 1;
  padding: calc(3 * var(--u)) calc(6 * var(--u)); border-radius: 99px; background: var(--gradient-brand);
}
.chat__who small { display: flex; align-items: center; gap: calc(5 * var(--u)); font-size: calc(10.5 * var(--u)); color: var(--color-steel); }
.chat__dot { width: calc(6 * var(--u)); height: calc(6 * var(--u)); border-radius: 50%; background: #3ddc97; }

.chat__scroll {
  flex: 1; min-height: 0; overflow: hidden; padding: calc(12 * var(--u)) calc(11 * var(--u));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 calc(16 * var(--u))); mask-image: linear-gradient(to bottom, transparent 0, #000 calc(16 * var(--u)));
}
html:not(.js) .chat__scroll, .js.no-chat .chat__scroll { overflow-y: auto; scrollbar-width: none; }
.chat__list { list-style: none; display: flex; flex-direction: column; gap: calc(7 * var(--u)); }

.msg {
  display: flex; flex-direction: column; gap: calc(5 * var(--u)); max-width: 86%;
  padding: calc(8 * var(--u)) calc(11 * var(--u)) calc(6 * var(--u));
  font-size: calc(12.6 * var(--u)); line-height: 1.38; border-radius: calc(15 * var(--u));
}
.msg b { font-weight: 600; }
.msg time { align-self: flex-end; font-size: calc(9 * var(--u)); line-height: 1; opacity: .58; }
.msg--out {
  align-self: flex-end; border-bottom-right-radius: calc(4 * var(--u));
  background: linear-gradient(135deg, var(--brand-violet), var(--brand-blue));
}
.msg--in {
  align-self: flex-start; border-top-left-radius: calc(4 * var(--u));
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(168, 155, 230, .16);
}
.msg__title { display: flex; align-items: baseline; justify-content: space-between; gap: calc(8 * var(--u)); font-weight: 600; }
.msg__tag { flex: none; font-size: calc(8 * var(--u)); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-violet-lt); }
.prices { display: grid; margin: calc(1 * var(--u)) 0; border-top: 1px solid rgba(168, 155, 230, .2); }
.prices div { display: flex; align-items: baseline; justify-content: space-between; gap: calc(10 * var(--u)); padding: calc(6 * var(--u)) 0; border-bottom: 1px solid rgba(168, 155, 230, .2); }
.prices dt { opacity: .86; }
.prices dd { flex: none; font-weight: 600; white-space: nowrap; }
.chips { display: flex; flex-wrap: wrap; gap: calc(6 * var(--u)); }
.chip {
  padding: calc(5 * var(--u)) calc(11 * var(--u)); border-radius: 99px; font-size: calc(11.5 * var(--u)); font-weight: 600;
  color: var(--brand-violet-lt); border: 1px solid rgba(190, 175, 255, .5);
}
.confirm {
  display: flex; align-items: center; gap: calc(9 * var(--u)); padding: calc(8 * var(--u)) calc(10 * var(--u));
  border-radius: calc(11 * var(--u)); background: rgba(139, 92, 255, .12); border: 1px solid rgba(139, 92, 255, .38);
}
.confirm__ico { flex: none; display: grid; place-items: center; width: calc(24 * var(--u)); height: calc(24 * var(--u)); border-radius: 50%; background: var(--gradient-brand); }
.confirm__ico svg { width: calc(13 * var(--u)); height: calc(13 * var(--u)); }
.confirm__txt { display: grid; gap: calc(2 * var(--u)); line-height: 1.2; }
.confirm__txt b { font-size: calc(12 * var(--u)); }
.confirm__txt small { font-size: calc(10.5 * var(--u)); opacity: .72; }

.typing {
  align-self: flex-start; display: none; gap: calc(4 * var(--u)); padding: calc(12 * var(--u)) calc(14 * var(--u));
  border-radius: calc(15 * var(--u)); border-top-left-radius: calc(4 * var(--u));
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(168, 155, 230, .16);
}
.chat .typing.is-shown { display: flex; }
.typing i { width: calc(5.5 * var(--u)); height: calc(5.5 * var(--u)); border-radius: 50%; background: var(--color-steel); animation: think 1.3s ease-in-out infinite; }
.typing i:nth-child(2) { animation-delay: .18s; }
.typing i:nth-child(3) { animation-delay: .36s; }

.chat__input { display: flex; align-items: center; gap: calc(8 * var(--u)); padding: calc(8 * var(--u)) calc(11 * var(--u)) calc(17 * var(--u)); }
.chat__field {
  flex: 1; padding: calc(9 * var(--u)) calc(14 * var(--u)); border-radius: 99px; font-size: calc(12 * var(--u)); color: var(--color-steel);
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(168, 155, 230, .14);
}
.chat__send { flex: none; display: grid; place-items: center; width: calc(34 * var(--u)); height: calc(34 * var(--u)); border-radius: 50%; background: var(--gradient-brand); }
.chat__send svg { width: calc(16 * var(--u)); height: calc(16 * var(--u)); }

.tink__caption { display: grid; justify-items: center; gap: var(--spacing-10); max-width: 36ch; text-align: center; font-size: var(--text-sm); line-height: 1.4; color: var(--color-steel); }
.tink__replay {
  font-size: var(--text-label); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--color-ice);
  text-decoration: underline; text-decoration-color: rgba(238, 241, 250, .45); text-underline-offset: 4px; transition: opacity .3s ease;
}
.tink__replay:hover { opacity: .7; }

.js:not(.no-chat) .chat .msg[data-msg]:not(.is-shown), .js .chat .typing:not(.is-shown) { display: none; }
.chat .msg[data-msg].is-shown, .chat .typing.is-shown { animation: msgIn .45s cubic-bezier(.2, .8, .2, 1) both; }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes msgFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes blip { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }
.is-instant .chat .msg[data-msg].is-shown, .is-instant .chat .typing.is-shown { animation-name: msgFade; }
.is-instant .typing i { animation-name: blip; }

@media (min-width: 768px) {
  .tink { padding-block: 120px; }
}
@media (min-width: 900px) {
  .tink__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: 6vw; }
  .tink { padding-block: clamp(72px, 8svh, 110px); }
  .tink__inner { max-width: none; gap: 5vw; }
  .tink__copy { gap: var(--spacing-24); }
  .tink__title { font-size: clamp(30px, 3.3vw, 64px); }
  .tink__lead { max-width: 46ch; font-size: var(--d-body, 16px); line-height: 1.5; }
  .tink__list { gap: var(--spacing-18); max-width: 34rem; }
  .tink__list h3 { font-size: clamp(15px, 1.05vw, 20px); }
  .tink__list p { font-size: clamp(14px, .9vw, 17px); line-height: 1.5; }
  .tink .btn--ghost { font-size: var(--d-label, 12px); padding: calc(var(--d-label, 12px) * 1.15) calc(var(--d-label, 12px) * 2.1); }
  .tink__device { gap: var(--spacing-18); }
  .tink .phone { width: clamp(220px, calc((100svh - 290px) * 9 / 18.6), 340px); }
  .tink__caption { font-size: 13px; }
}

.contact {
  --wm: clamp(112px, 21vw, 330px);
  position: relative; isolation: isolate; overflow: hidden;
  padding: 90px var(--gutter) calc(var(--wm) * .68);
  background: #000;
}

.contact__glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 260px, #000 calc(100% - 160px), transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 260px, #000 calc(100% - 160px), transparent 100%);
}
.contact__glow::before, .contact__glow::after { content: ""; position: absolute; border-radius: 50%; }
.contact__glow::before {
  width: 120vw; height: 120vw; max-width: 1000px; max-height: 1000px; right: -38%; top: 6%;
  background: radial-gradient(circle, rgba(109, 40, 255, .34), rgba(42, 95, 240, .14) 46%, transparent 68%);
  animation: glowDrift 18s ease-in-out infinite alternate;
}
.contact__glow::after {
  width: 80vw; height: 80vw; max-width: 640px; max-height: 640px; left: -30%; bottom: 10%;
  background: radial-gradient(circle, rgba(212, 35, 176, .2), rgba(42, 95, 240, .08) 50%, transparent 70%);
  animation: glowDrift 22s ease-in-out infinite alternate-reverse;
}
@keyframes glowDrift { to { transform: translate3d(-4%, 5%, 0) scale(1.08); } }

.contact__wordmark {
  position: absolute; z-index: -1; left: 50%; bottom: calc(var(--wm) * -.2); transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 600; font-size: var(--wm); line-height: .85; letter-spacing: -.045em; white-space: nowrap;
  background: linear-gradient(to bottom, rgba(139, 92, 255, .32), rgba(42, 95, 240, .09) 62%, transparent 92%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  user-select: none; pointer-events: none;
}

.contact__inner { position: relative; display: grid; gap: 44px; }

.contact__copy { display: grid; gap: var(--spacing-24); justify-items: start; align-content: center; }
.contact__title {
  font-size: var(--text-heading); font-weight: 500; line-height: 1.04;
  text-transform: uppercase; text-wrap: balance;
}
.contact__lead { max-width: 40ch; font-size: var(--text-body); line-height: var(--leading-body); color: rgba(238, 241, 250, .72); }

.channels { list-style: none; display: grid; gap: var(--spacing-12); width: 100%; margin-top: var(--spacing-6); }
.channel {
  --mx: 50%; --my: 50%;
  position: relative; overflow: hidden; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: var(--spacing-14);
  padding: 14px 16px; border-radius: var(--radius-2xl);
  background: var(--glass-fill); border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transition: border-color .3s ease, background-color .3s ease, transform .3s cubic-bezier(.2, .8, .2, 1);
}
.channel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .35s ease;
  background: radial-gradient(260px circle at var(--mx) var(--my), rgba(109, 40, 255, .24), transparent 70%);
}
.channel > * { position: relative; }
.channel:hover, .channel:focus-visible { border-color: var(--glass-border-hover); background: var(--glass-fill-hover); transform: translateY(-2px); }
.channel:hover::before { opacity: 1; }
.channel__ico {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--radius-xl);
  color: var(--brand-violet-lt); background: rgba(109, 40, 255, .14); border: 1px solid var(--glass-border);
}
.channel__ico svg { width: 22px; height: 22px; }
.channel__txt { display: grid; gap: 2px; min-width: 0; }
.channel__txt b { font-size: 16px; font-weight: 600; line-height: 1.25; }
.channel__txt small { font-size: 14px; line-height: 1.35; color: var(--color-steel); overflow-wrap: anywhere; }
.channel__go { width: 20px; height: 20px; color: var(--color-steel); transition: transform .3s ease, color .3s ease; }
.channel:hover .channel__go { transform: translateX(4px); color: var(--color-ice); }
.channel--wa { border-color: rgba(139, 92, 255, .42); box-shadow: 0 0 44px -8px rgba(109, 40, 255, .4); }
.channel--wa .channel__ico { color: #fff; background: var(--gradient-brand); border-color: transparent; }

.contact__points { list-style: none; display: grid; gap: var(--spacing-10); margin-top: var(--spacing-6); font-size: var(--text-sm); line-height: 1.4; color: rgba(238, 241, 250, .78); }
.contact__points li { display: flex; align-items: center; gap: 10px; }
.contact__points svg { flex: none; width: 18px; height: 18px; color: var(--brand-violet-lt); }

@property --ring { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.contact__card {
  --mx: 50%; --my: 0%;
  position: relative; display: grid; gap: var(--spacing-18); padding: 24px 18px 20px; border-radius: 28px;
  background: rgba(12, 12, 18, .64);
  -webkit-backdrop-filter: blur(22px) saturate(1.2); backdrop-filter: blur(22px) saturate(1.2);
  box-shadow: 0 40px 90px -40px rgba(109, 40, 255, .55), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.contact__card::before {
  content: ""; position: absolute; inset: 0; z-index: 0; padding: 1.5px; border-radius: inherit; pointer-events: none;
  background: conic-gradient(from var(--ring), rgba(42, 95, 240, .18), var(--brand-blue) 14%, var(--brand-violet) 34%, var(--brand-magenta) 52%, rgba(212, 35, 176, .12) 66%, rgba(42, 95, 240, .18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);         mask-composite: exclude;
  animation: ringSpin 9s linear infinite;
}
@keyframes ringSpin { to { --ring: 360deg; } }
.contact__card::after {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .4s ease;
  background: radial-gradient(440px circle at var(--mx) var(--my), rgba(139, 92, 255, .16), transparent 65%);
}
.contact__card:hover::after { opacity: 1; }
.contact__card > * { position: relative; z-index: 1; }

.contact__card-head h3 { font-size: 20px; font-weight: 600; line-height: 1.2; text-transform: none; }
.contact__card-head p { margin-top: 6px; font-size: var(--text-sm); line-height: 1.45; color: var(--color-steel); }

.contact__row { display: grid; gap: var(--spacing-18); align-items: start; }
.field { display: grid; gap: 8px; min-width: 0; margin: 0; padding: 0; border: 0; }
.field > label, .field > legend { padding: 0; margin-bottom: 8px; font-size: 13px; font-weight: 500; line-height: 1.3; color: rgba(238, 241, 250, .9); }
.field > label { margin-bottom: 0; }
.opt { margin-left: 6px; font-weight: 400; color: var(--color-steel); }

.input {
  width: 100%; padding: 14px 16px; border-radius: 14px;
  border: 1px solid rgba(168, 155, 230, .24); background: rgba(255, 255, 255, .04); color: var(--color-ice);
  font-family: inherit; font-size: 16px; line-height: 1.4;
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.input::placeholder { color: rgba(140, 143, 163, .9); }
.input:hover { border-color: rgba(168, 155, 230, .42); }
.input:focus { outline: none; border-color: var(--brand-violet-lt); background: rgba(109, 40, 255, .08); box-shadow: 0 0 0 4px rgba(109, 40, 255, .24); }
textarea.input { resize: vertical; min-height: 96px; }
.field.is-invalid .input { border-color: var(--brand-magenta-lt); box-shadow: 0 0 0 4px rgba(212, 35, 176, .16); }
.field__err { font-size: 13px; line-height: 1.3; color: var(--brand-magenta-lt); }
.field__err:empty { display: none; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { position: relative; }
.pill input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.pill span {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; border-radius: var(--radius-full);
  border: 1px solid rgba(168, 155, 230, .3); background: rgba(255, 255, 255, .035);
  font-size: 14px; line-height: 1.2; color: rgba(238, 241, 250, .88);
  transition: border-color .25s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.pill:hover span { border-color: rgba(168, 155, 230, .6); background: rgba(255, 255, 255, .06); }
.pill input:focus-visible + span { outline: 2px solid var(--brand-violet-lt); outline-offset: 3px; }
.pill input:checked + span {
  color: #fff; border-color: transparent; background: linear-gradient(100deg, var(--brand-blue), var(--brand-violet));
  box-shadow: 0 8px 24px -10px rgba(109, 40, 255, .8);
}
.pill input:checked + span::before {
  content: ""; flex: none; width: 12px; height: 12px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.send {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
  padding: 17px 24px; border: 0; border-radius: var(--radius-full); cursor: pointer; color: #fff;
  font-family: inherit; font-size: 14px; font-weight: 600; letter-spacing: .04em; line-height: 1; text-transform: uppercase;
  background: var(--gradient-brand); box-shadow: 0 16px 40px -14px rgba(109, 40, 255, .85), inset 0 1px 0 rgba(255, 255, 255, .28);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s ease, filter .3s ease;
}
.send::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; transform: translateX(-120%);
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .34) 50%, transparent 70%);
  transition: transform .9s cubic-bezier(.2, .8, .2, 1);
}
.send > * { position: relative; }
.send svg { width: 18px; height: 18px; transition: transform .3s ease; }
.send:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 20px 50px -12px rgba(109, 40, 255, .95), inset 0 1px 0 rgba(255, 255, 255, .34); }
.send:hover::before { transform: translateX(120%); }
.send:hover svg { transform: translateX(4px); }
.send:active { transform: translateY(0) scale(.99); }
.send:focus-visible { outline: 2px solid var(--brand-violet-lt); outline-offset: 4px; }

.contact__fine { font-size: 12.5px; line-height: 1.5; text-align: center; color: var(--color-steel); }
.form-status { font-size: 14px; line-height: 1.45; text-align: center; color: rgba(238, 241, 250, .9); }
.form-status:empty { display: none; }
.form-status.is-ok { color: var(--color-ice); padding: 12px 14px; border-radius: 14px; background: rgba(109, 40, 255, .14); border: 1px solid rgba(139, 92, 255, .4); }
.form-status a { text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 560px) {
  .contact__card { padding: 30px 28px 24px; }
}
.contact__card { container-type: inline-size; }
@container (min-width: 470px) {
  .contact__row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .contact { padding-top: clamp(72px, 8svh, 110px); }
  .contact__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 5vw; align-items: center; }
  .contact__title { font-size: clamp(30px, 3.3vw, 64px); }
  .contact__lead { max-width: 46ch; font-size: var(--d-body, 16px); line-height: 1.5; }
  .channels { max-width: 34rem; }
  .channel { padding: 16px 18px; }
  .channel__txt b { font-size: clamp(16px, 1vw, 19px); }
  .channel__txt small { font-size: clamp(14px, .85vw, 16px); }
  .contact__points { font-size: clamp(14px, .9vw, 17px); }
  .contact__card { justify-self: end; width: 100%; max-width: 40rem; padding: clamp(28px, 2.3vw, 44px); gap: 20px; }
  .contact__card-head h3 { font-size: clamp(20px, 1.5vw, 28px); }
  .contact__card-head p { font-size: clamp(14px, .9vw, 17px); }
  .input { font-size: clamp(16px, .95vw, 18px); }
  .pill span { font-size: clamp(14px, .85vw, 16px); }
  .send { font-size: clamp(13px, .85vw, 16px); padding-block: clamp(17px, 1.05vw, 21px); }
}

@media (min-width: 768px) {
  .nav__wordmark { font-size: 22px; }
  .hero__top { top: 112px; }
  .hero__foot { bottom: var(--spacing-45); }
  .hero__lead { font-size: var(--text-body); }
  .hero__media { top: clamp(12%, calc(31.4vw + 239px - 25svh), 42%); }
  .hero__title { font-size: clamp(44px, min(8.4vw, 8.4svh), 96px); }
}

@media (min-width: 1024px) {
  .nav__toggle { display: none; }
  .menu { display: none; }
  .nav__links { display: flex; align-items: center; gap: clamp(28px, 2.2vw, 44px); }
  .nav__wordmark { font-size: clamp(21px, 1.3vw, 26px); }
  .nav__mark { width: clamp(26px, 1.6vw, 32px); height: clamp(26px, 1.6vw, 32px); }
  .nav__links a:not(.btn) {
    font-size: var(--d-label, 12px); line-height: 1.1; padding-bottom: 6px;
    background: var(--gradient-brand) no-repeat left bottom / 0 2px; transition: background-size .35s cubic-bezier(.2, .8, .2, 1);
  }
  .nav__links a:not(.btn):hover, .nav__links a.is-active { background-size: 100% 2px; }

  .hero__top { top: 132px; max-width: 58vw; }
  .hero__media { left: auto; right: 0; top: 0; width: 66vw; }
  .hero__glow { left: 66%; top: 52%; width: 70vw; height: 60vw; }
  .hero__shade { height: 34%; }
  .hero__top { top: clamp(100px, 13svh, 132px); }
  .hero__title { font-size: clamp(44px, min(5vw, 10svh), 112px); }
  .hero__eyebrow { margin-bottom: var(--spacing-14); font-size: var(--d-label, 12px); }
  .hero__foot { max-width: 40rem; gap: var(--spacing-24); }
  .hero__lead { max-width: 42ch; font-size: var(--d-body, 18px); line-height: 1.4; }
  .hero .btn--ghost { font-size: var(--d-label, 12px); padding: calc(var(--d-label, 12px) * 1.15) calc(var(--d-label, 12px) * 2.1); }

  .hero__hint {
    display: flex; align-items: center; gap: var(--spacing-12);
    position: absolute; z-index: 3; right: calc(var(--gutter) + var(--spacing-24)); bottom: var(--spacing-45);
    font-size: var(--d-label, 12px); font-weight: 500; text-transform: uppercase; color: var(--color-steel);
  }
  .hero__hint i { position: relative; width: 20px; height: 32px; border-radius: 12px; border: 1.5px solid var(--color-steel); }
  .hero__hint i::after {
    content: ""; position: absolute; left: 50%; top: 6px; width: 3px; height: 6px; margin-left: -1.5px; border-radius: 2px;
    background: var(--gradient-brand); animation: scrollDot 1.8s ease-in-out infinite;
  }
  @keyframes scrollDot { 0% { opacity: 0; transform: translateY(-2px); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }

}

@media (min-width: 1024px) {
  :root {
    --edge: max(var(--gutter), calc((100vw - 1600px) / 2));
    --d-label: clamp(12px, .78vw, 15px);
    --d-body: clamp(16px, 1.1vw, 21px);
  }

  .nav { padding-left: var(--edge); padding-right: var(--edge); }

  .hero {
    display: flex; flex-direction: column; justify-content: center; gap: var(--spacing-24);
    padding: 76px var(--edge) 0;
  }
  .hero__top, .hero__foot { position: relative; inset: auto; left: auto; right: auto; top: auto; bottom: auto; }
  .hero__hint { right: var(--edge); }

  .solutions, .tink, .contact, .site-footer { padding-left: var(--edge); padding-right: var(--edge); }
  .solutions-inner, .tink__inner, .contact__inner, .footer-inner { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .think-dots i { animation: none; opacity: .7; }
  .hero__hint i::after { animation: none; opacity: .9; }
  .contact__glow::before, .contact__glow::after, .contact__card::before { animation: none; }
  .send::before { display: none; }
  .send, .send svg, .channel, .channel__go, .pill span, .input { transition: none; }
  .btn, .card, .nav { transition: none; }
  .menu__links a, .menu__foot { transform: none; transition: opacity .35s ease; }
  .menu__arrow, .nav__bars i { transition: none; }
}

@media (max-width: 767px) {
  .card, .channel, .contact__card { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .hero__glow { filter: none; }
}
.contact.is-offscreen .contact__glow::before, .contact.is-offscreen .contact__glow::after,
.contact.is-offscreen .contact__card::before { animation-play-state: paused; }
