/*
Theme Name: TryKAI
Theme URI: https://trykai.co.uk/
Author: KSJ Growth
Author URI: https://www.ksjgrowth.com/
Description: Custom launch theme for TryKAI, the AI website assistant by KSJ AI.
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 8.0
Text Domain: trykai
License: Proprietary
*/

:root {
  --ink: #080a08;
  --ink-soft: #101410;
  --panel: #151a15;
  --panel-light: #1b211b;
  --acid: #c9ff3b;
  --acid-soft: #e3ff96;
  --paper: #f5f6ef;
  --white: #ffffff;
  --muted: #aeb5aa;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --container: min(1180px, calc(100vw - 48px));
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 99px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 124px 0;
}

.announcement {
  position: relative;
  z-index: 30;
  background: var(--acid);
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.03em;
}

.announcement__inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.announcement__logo {
  width: 145px;
  height: auto;
  margin-right: auto;
  mix-blend-mode: multiply;
}

.announcement a {
  margin-left: auto;
  border-bottom: 1px solid rgba(8, 10, 8, 0.65);
  line-height: 1.25;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-lockup--small {
  margin-right: auto;
  font-size: 13px;
}

.brand-lockup__divider {
  width: 1px;
  height: 1.2em;
  background: currentColor;
  opacity: 0.45;
}

.brand-lockup__ai {
  letter-spacing: 0.02em;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 56px;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  background: rgba(8, 10, 8, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kai-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.kai-logo__image {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(177, 255, 0, 0.11);
}

.kai-logo__name {
  display: inline-block;
}

.kai-logo__spark {
  position: relative;
}

.kai-logo__dot {
  position: absolute;
  top: -7px;
  right: -1px;
  color: var(--acid);
  font-size: 16px;
  line-height: 1;
}

.kai-logo--footer {
  font-size: 32px;
}

.kai-logo--footer .kai-logo__image {
  width: 48px;
  height: 48px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 680;
}

.site-nav > a:not(.button) {
  color: #d2d7d0;
  transition: color 160ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--acid);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  border: 1px solid var(--acid);
  border-radius: 8px;
  background: var(--acid);
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 255, 59, 0.17);
  background: var(--acid-soft);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
}

.button--wide {
  width: 100%;
  justify-content: space-between;
}

.button__arrow {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 750;
  transition: color 160ms ease, border-color 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--acid);
  border-color: var(--acid);
}

.hero {
  position: relative;
  min-height: 870px;
  padding: 198px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 45%, rgba(148, 206, 38, 0.09), transparent 30%),
    linear-gradient(135deg, #080a08 0%, #0d100d 48%, #090b09 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 70%, transparent 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero__glow--one {
  top: 190px;
  right: 8%;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(201, 255, 59, 0.1);
  box-shadow: 0 0 100px rgba(201, 255, 59, 0.04) inset;
}

.hero__glow--two {
  top: 260px;
  right: 13%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(201, 255, 59, 0.1);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 84px;
  align-items: center;
}

.hero__copy {
  max-width: 650px;
  padding: 74px 0 68px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 25px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 6vw, 86px);
  font-weight: 760;
  letter-spacing: -0.064em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero__lead {
  max-width: 590px;
  margin: 33px 0 0;
  color: #bdc3ba;
  font-size: 18px;
  line-height: 1.68;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 39px;
  color: #939b90;
  font-size: 11px;
  font-weight: 670;
}

.hero__assurances span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__assurances i {
  color: var(--acid);
  font-style: normal;
}

.hero__visual {
  position: relative;
  min-height: 575px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(201, 255, 59, 0.1);
  border-radius: 50%;
}

.orbit--one {
  width: 520px;
  height: 520px;
}

.orbit--two {
  width: 405px;
  height: 405px;
  border-style: dashed;
  animation: orbit 42s linear infinite;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.kai-product {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 255, 59, 0.24);
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 12px rgba(201, 255, 59, 0.025),
    0 35px 100px rgba(0, 0, 0, 0.5),
    0 0 65px rgba(177, 255, 0, 0.1);
}

.kai-product::after {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(201, 255, 59, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 45px rgba(201, 255, 59, 0.06) inset;
  content: "";
  pointer-events: none;
}

.kai-product__video {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.kai-product__control {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 58px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(8, 10, 8, 0.74);
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.kai-product__control:hover,
.kai-product__control:focus-visible {
  border-color: var(--acid);
}

.kai-product__label {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(8, 10, 8, 0.76);
  color: #dce2d8;
  font-size: 9px;
  font-weight: 750;
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.kai-product__label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}

.hero-prompt {
  position: absolute;
  z-index: 4;
  bottom: 49px;
  left: -35px;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 238px;
  padding: 12px 15px 12px 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(22, 27, 22, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out -2.4s infinite;
}

.hero-prompt img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.hero-prompt span,
.hero-prompt strong {
  display: block;
}

.hero-prompt span {
  color: #8d958a;
  font-size: 9px;
  line-height: 1.5;
}

.hero-prompt strong {
  color: var(--paper);
  font-size: 11px;
}

.chat-window {
  position: relative;
  z-index: 2;
  width: min(100%, 440px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 19px;
  overflow: hidden;
  background: rgba(17, 21, 17, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(1.2deg);
}

.chat-window::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 50px rgba(201, 255, 59, 0.035) inset;
  content: "";
  pointer-events: none;
}

.chat-window__topbar {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 17px;
  border-bottom: 1px solid var(--line);
}

.chat-window__more {
  color: #8e968a;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.chat-agent {
  display: flex;
  align-items: center;
  gap: 11px;
}

.chat-agent__avatar,
.message__avatar,
.demo-message > span {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(201, 255, 59, 0.25);
  border-radius: 10px;
  background: linear-gradient(145deg, #d8ff73, #9bd923);
  color: #0a0d09;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 8px 25px rgba(201, 255, 59, 0.12);
}

.chat-agent > span:last-child {
  display: flex;
  flex-direction: column;
}

.chat-agent strong {
  font-size: 12px;
  line-height: 1.4;
}

.chat-agent small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #90988e;
  font-size: 9px;
}

.chat-agent small i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}

.chat-window__body {
  min-height: 370px;
  padding: 28px 19px 22px;
  background:
    radial-gradient(circle at top right, rgba(201, 255, 59, 0.04), transparent 35%),
    rgba(8, 10, 8, 0.3);
}

.message {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin-bottom: 15px;
}

.message p {
  max-width: 286px;
  margin: 0;
  padding: 12px 15px;
  border-radius: 6px 14px 14px 14px;
  background: #202620;
  color: #d7dcd4;
  font-size: 11px;
  line-height: 1.55;
}

.message__avatar {
  width: 27px;
  height: 27px;
  border-radius: 7px;
  font-size: 11px;
}

.message--visitor {
  justify-content: flex-end;
}

.message--visitor p {
  border-radius: 14px 6px 14px 14px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 650;
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 3px 0 0 36px;
}

.chat-options span {
  padding: 7px 10px;
  border: 1px solid rgba(201, 255, 59, 0.3);
  border-radius: 999px;
  color: var(--acid-soft);
  font-size: 9px;
  font-weight: 700;
}

.chat-window__input {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 13px 12px 19px;
  border-top: 1px solid var(--line);
  color: #697067;
  font-size: 10px;
}

.chat-window__send {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  background: var(--acid);
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(24, 29, 24, 0.92);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  font-size: 9px;
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  color: #858d81;
}

.floating-note strong {
  color: var(--paper);
  font-size: 10px;
}

.floating-note > i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px rgba(201, 255, 59, 0.75);
}

.floating-note__icon {
  display: grid !important;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink) !important;
  font-size: 13px;
  font-weight: 900;
}

.floating-note--top {
  top: 72px;
  right: -20px;
}

.floating-note--bottom {
  bottom: 63px;
  left: -40px;
  animation-delay: -2.5s;
}

@keyframes float {
  50% { transform: translateY(-8px); }
}

.hero__foot {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #7e867b;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.hero__sectors {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #aeb5aa;
}

.hero__sectors i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--acid);
}

.intro {
  background: var(--paper);
  color: var(--ink);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.45fr 0.65fr;
  gap: 110px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading h2,
.conversation__copy h2,
.faq__intro h2,
.contact__copy h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.section-heading--split > p {
  margin: 0 0 4px;
  color: #596057;
  font-size: 15px;
  line-height: 1.75;
}

.intro .eyebrow,
.use-cases .eyebrow,
.faq .eyebrow {
  color: #67980a;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.benefit-card {
  position: relative;
  min-height: 325px;
  padding: 28px;
  border: 1px solid #dce0d7;
  border-radius: 16px;
  background: #f9faf5;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #bfd082;
  box-shadow: 0 18px 45px rgba(40, 48, 35, 0.08);
}

.benefit-card--feature {
  grid-row: span 2;
  display: flex;
  min-height: 664px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink-soft);
  color: var(--paper);
}

.benefit-card:nth-child(4) {
  grid-column: 2 / 4;
  min-height: 325px;
}

.benefit-card__number {
  position: absolute;
  top: 26px;
  right: 27px;
  color: #8e958a;
  font-size: 10px;
  font-weight: 800;
}

.benefit-card__icon {
  display: grid;
  width: 51px;
  height: 51px;
  margin: 54px 0 52px;
  place-items: center;
  border-radius: 11px;
  background: #e9f4cb;
  color: #557b0b;
}

.benefit-card__icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-card h3 {
  margin: 0 0 13px;
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.benefit-card p {
  max-width: 340px;
  margin: 0;
  color: #687066;
  font-size: 13px;
  line-height: 1.7;
}

.benefit-card--feature p {
  color: #9ba398;
}

.pulse-visual {
  position: relative;
  display: grid;
  width: 260px;
  height: 260px;
  margin: 78px auto 48px;
  place-items: center;
}

.pulse-visual::before,
.pulse-visual__ring {
  position: absolute;
  border: 1px solid rgba(201, 255, 59, 0.22);
  border-radius: 50%;
  content: "";
}

.pulse-visual::before {
  inset: 0;
}

.pulse-visual__ring:first-child {
  inset: 32px;
}

.pulse-visual__ring:nth-child(2) {
  inset: 65px;
  background: rgba(201, 255, 59, 0.035);
}

.pulse-visual__core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 0 50px rgba(201, 255, 59, 0.18);
}

.conversation {
  background: var(--ink-soft);
  overflow: hidden;
}

.conversation__layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 100px;
  align-items: center;
}

.conversation__copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: #a6ada3;
  font-size: 15px;
}

.conversation__tabs {
  display: flex;
  gap: 26px;
  margin-top: 42px;
  border-bottom: 1px solid var(--line);
}

.conversation__tabs button {
  position: relative;
  padding: 0 0 13px;
  border: 0;
  background: transparent;
  color: #71796f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.conversation__tabs button::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--acid);
  content: "";
  transition: width 180ms ease;
}

.conversation__tabs button[aria-selected="true"] {
  color: var(--acid);
}

.conversation__tabs button[aria-selected="true"]::after {
  width: 100%;
}

.conversation__panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 19px;
  padding-top: 26px;
}

.conversation__step {
  color: var(--acid);
  font-size: 10px;
  font-weight: 850;
}

.conversation__panel h3 {
  margin: -3px 0 8px;
  font-size: 16px;
  letter-spacing: -0.025em;
}

.conversation__panel p {
  margin: 0;
  color: #858d82;
  font-size: 12px;
}

.conversation-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0c0f0c;
  box-shadow: var(--shadow);
}

.conversation-card::before {
  position: absolute;
  inset: -35% auto auto 36%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(201, 255, 59, 0.05);
  filter: blur(45px);
  content: "";
}

.conversation-card__header,
.conversation-card__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.conversation-card__header span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 750;
}

.conversation-card__header i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}

.conversation-card__header small {
  color: #656d63;
  font-size: 9px;
}

.conversation-card__messages {
  position: relative;
  z-index: 2;
  min-height: 480px;
  padding: 56px 54px;
}

.demo-message {
  display: flex;
  align-items: flex-end;
  gap: 11px;
  margin-bottom: 22px;
}

.demo-message > span {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 12px;
  overflow: hidden;
  background: #020302;
}

.demo-message > span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-message p {
  max-width: 350px;
  margin: 0;
  padding: 15px 18px;
  border-radius: 5px 15px 15px 15px;
  background: #202620;
  color: #dce1d9;
  font-size: 12px;
}

.demo-message--user {
  justify-content: flex-end;
}

.demo-message--user p {
  border-radius: 15px 5px 15px 15px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 680;
}

.demo-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-left: 43px;
}

.demo-choices button {
  padding: 8px 12px;
  border: 1px solid rgba(201, 255, 59, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--acid-soft);
  font-size: 9px;
  font-weight: 720;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.demo-choices button:hover,
.demo-choices button:focus-visible {
  background: var(--acid);
  color: var(--ink);
}

.conversation-card__footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: #747c71;
  font-size: 9px;
}

.conversation-card__footer p {
  margin: 0;
}

.conversation-card__footer button {
  border: 0;
  background: transparent;
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.process {
  background: #0b0e0b;
}

.section-heading--centred {
  max-width: 720px;
  margin: 0 auto 76px;
  text-align: center;
}

.section-heading--centred .eyebrow {
  justify-content: center;
}

.section-heading--centred > p:last-child {
  max-width: 520px;
  margin: 25px auto 0;
  color: #899087;
  font-size: 14px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 0 48px 0 0;
}

.process-list li:not(:last-child)::before {
  position: absolute;
  top: 26px;
  right: 0;
  left: 56px;
  height: 1px;
  background: linear-gradient(to right, var(--acid), var(--line));
  content: "";
}

.process-list__marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 53px;
  height: 53px;
  margin-bottom: 38px;
  place-items: center;
  border: 1px solid rgba(201, 255, 59, 0.4);
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  font-size: 11px;
  font-weight: 850;
}

.process-list__marker::after {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(201, 255, 59, 0.16);
  border-radius: 50%;
  content: "";
}

.process-list__label {
  margin: 0 0 12px;
  color: var(--acid);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-list h3 {
  max-width: 280px;
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.process-list li > div > p:last-child {
  max-width: 290px;
  margin: 0;
  color: #7e867b;
  font-size: 12px;
}

.investment {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 48%, rgba(201, 255, 59, 0.1), transparent 27%),
    var(--ink-soft);
}

.investment::before {
  position: absolute;
  top: -240px;
  right: -110px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(201, 255, 59, 0.08);
  border-radius: 50%;
  content: "";
}

.investment__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 0.65fr;
  gap: 110px;
  align-items: center;
}

.investment__copy h2 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(42px, 5vw, 69px);
  font-weight: 730;
  letter-spacing: -0.058em;
  line-height: 1.03;
}

.investment__copy h2 em {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.investment__copy > p:last-child {
  max-width: 575px;
  margin: 29px 0 0;
  color: #969e93;
  font-size: 14px;
}

.investment-card {
  padding: 34px;
  border-radius: 20px;
  background: var(--acid);
  color: var(--ink);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.34);
}

.investment-card__label {
  margin: 0;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.investment-card__price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 20px 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(8, 10, 8, 0.2);
}

.investment-card__price span,
.investment-card__price small {
  padding-bottom: 10px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.investment-card__price strong {
  font-size: 68px;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.investment-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 720;
}

.investment-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.investment-card li span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  font-size: 9px;
}

.investment-card .button {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--acid);
}

.investment-card .button__arrow {
  background: var(--acid);
  color: var(--ink);
}

.investment-card__note {
  margin: 13px 4px 0;
  color: rgba(8, 10, 8, 0.65);
  font-size: 8px;
  line-height: 1.55;
  text-align: center;
}

.use-cases {
  background: var(--paper);
  color: var(--ink);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d6dbd1;
  border-bottom: 1px solid #d6dbd1;
}

.sector-grid article {
  min-height: 330px;
  padding: 37px 28px;
}

.sector-grid article + article {
  border-left: 1px solid #d6dbd1;
}

.sector-grid__icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 66px;
  place-items: center;
  border-radius: 50%;
  background: #e8f3cc;
  color: #5e8b09;
  font-size: 18px;
  font-weight: 800;
}

.sector-grid h3 {
  margin: 0 0 13px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.sector-grid p {
  margin: 0;
  color: #6d746a;
  font-size: 12px;
  line-height: 1.7;
}

.sector-grid__tag {
  display: inline-block;
  margin-top: 26px;
  padding: 5px 9px;
  border: 1px solid #d4dacd;
  border-radius: 999px;
  color: #737b70;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.use-cases__note {
  margin: 38px 0 0;
  color: #6b7368;
  font-size: 12px;
  text-align: center;
}

.use-cases__note a {
  color: #4e7504;
  font-weight: 780;
}

.principle {
  position: relative;
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
}

.principle::before {
  position: absolute;
  top: -180px;
  right: -110px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(8, 10, 8, 0.12);
  border-radius: 50%;
  content: "";
}

.principle__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 80px;
  align-items: center;
}

.principle__mark {
  display: grid;
  width: 210px;
  height: 210px;
  place-items: center;
  border: 1px solid rgba(8, 10, 8, 0.2);
  border-radius: 44px;
  font-size: 92px;
  font-weight: 950;
  letter-spacing: -0.08em;
  transform: rotate(-4deg);
  overflow: hidden;
  background: #030403;
}

.principle__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.principle blockquote {
  margin: 0;
}

.principle blockquote > p {
  max-width: 790px;
  margin: 0;
  font-size: clamp(36px, 4.2vw, 61px);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.principle blockquote em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.principle blockquote footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  font-size: 11px;
}

.principle blockquote footer strong {
  padding-right: 18px;
  border-right: 1px solid rgba(8, 10, 8, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.principle blockquote footer span {
  color: rgba(8, 10, 8, 0.65);
}

.faq {
  background: var(--paper);
  color: var(--ink);
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 110px;
}

.faq__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq__intro > p:not(.eyebrow) {
  margin: 24px 0 14px;
  color: #697166;
  font-size: 13px;
}

.faq__intro .text-link {
  border-color: rgba(8, 10, 8, 0.35);
}

.accordion__item {
  border-bottom: 1px solid #d5dad0;
}

.accordion__item:first-child {
  border-top: 1px solid #d5dad0;
}

.accordion__item h3 {
  margin: 0;
}

.accordion__item button {
  display: flex;
  width: 100%;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  font-weight: 720;
  text-align: left;
  cursor: pointer;
}

.accordion__item button > span {
  position: relative;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  border: 1px solid #b9c0b5;
  border-radius: 50%;
}

.accordion__item button > span::before,
.accordion__item button > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion__item button > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item.is-open button > span {
  border-color: #83b51a;
  background: var(--acid);
}

.accordion__item.is-open button > span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion__panel {
  max-width: 600px;
  padding: 0 54px 27px 0;
}

.accordion__panel p {
  margin: 0;
  color: #626a60;
  font-size: 13px;
  line-height: 1.75;
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 70px 70px;
}

.contact__glow {
  position: absolute;
  top: 20%;
  left: 9%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(201, 255, 59, 0.05);
  filter: blur(80px);
}

.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 120px;
  align-items: center;
}

.contact__copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 29px 0 0;
  color: #929a8f;
  font-size: 14px;
}

.contact__owner {
  margin-top: 64px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.contact__owner > img {
  width: 245px;
  height: auto;
}

.contact__owner p {
  margin: 8px 0 0;
  color: #727a70;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(24, 29, 24, 0.88);
  box-shadow: var(--shadow);
}

.contact-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form label > span:first-child {
  display: block;
  margin-bottom: 7px;
  color: #b8beb5;
  font-size: 10px;
  font-weight: 720;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  outline: none;
  background: #0f130f;
  color: var(--paper);
  font-size: 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 110px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #626a5f;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(201, 255, 59, 0.65);
  box-shadow: 0 0 0 3px rgba(201, 255, 59, 0.06);
}

.contact-form .contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 4px 0 19px;
  color: #7c8479;
  font-size: 9px;
}

.contact-form__consent input {
  width: 14px;
  height: 14px;
  margin: 2px 0 0;
  accent-color: var(--acid);
}

.contact-form__consent a,
.contact-form__note a {
  color: var(--acid-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form__note,
.contact-form__status {
  margin: 10px 0 0;
  color: #697067;
  font-size: 9px;
  text-align: center;
}

.contact-form__status {
  min-height: 1.4em;
  color: var(--acid-soft);
}

.site-footer {
  padding: 74px 0 24px;
  background: #050705;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 68px;
}

.site-footer__top > div:first-child > p {
  max-width: 260px;
  margin: 20px 0 0;
  color: #737a70;
  font-size: 12px;
}

.site-footer__ksj-logo {
  width: 185px;
  height: auto;
  margin-top: 27px;
  opacity: 0.75;
}

.site-footer__links {
  display: flex;
  gap: 90px;
}

.site-footer__links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.site-footer__links p {
  margin: 0 0 7px;
  color: #596057;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer__links a {
  color: #aab1a7;
  font-size: 11px;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--acid);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #555c53;
  font-size: 9px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.legal-body {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.legal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
}

.legal-header__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
}

.legal-header__inner > img {
  width: 180px;
  height: auto;
}

.legal-page {
  padding: 105px 0 120px;
}

.legal-page__layout {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 110px;
  align-items: start;
}

.legal-page aside {
  position: sticky;
  top: 40px;
}

.legal-page aside h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 70px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal-page aside > p:not(.eyebrow) {
  margin: 22px 0;
  color: #6a7267;
  font-size: 12px;
}

.legal-page .text-link {
  border-color: rgba(8, 10, 8, 0.28);
}

.legal-copy {
  border-top: 1px solid #d7dcd2;
}

.legal-copy section {
  padding: 34px 0;
  border-bottom: 1px solid #d7dcd2;
}

.legal-copy h2 {
  margin: 0 0 13px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.legal-copy p,
.legal-copy li {
  margin: 0 0 12px;
  color: #60685e;
  font-size: 14px;
  line-height: 1.75;
}

.legal-copy p:last-child {
  margin-bottom: 0;
}

.legal-copy a {
  color: #4e7504;
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-footer {
  padding: 25px 0;
  border-top: 1px solid var(--line);
  background: #050705;
  color: #70786d;
  font-size: 10px;
}

.legal-footer p {
  margin: 0;
}

.confirmation-page {
  min-height: calc(100vh - 145px);
  display: grid;
  place-items: center;
  padding: 70px 20px;
  background:
    radial-gradient(circle at 50% 30%, rgba(201, 255, 59, 0.12), transparent 34%),
    var(--ink);
  color: var(--paper);
  text-align: center;
}

.confirmation-page > main,
.confirmation-page > div,
.confirmation-page main {
  width: min(620px, 100%);
}

.confirmation-page__kai {
  width: 118px;
  height: 118px;
  margin: 0 auto 28px;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(177, 255, 0, 0.17);
}

.confirmation-page .eyebrow {
  justify-content: center;
}

.confirmation-page h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 70px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.confirmation-page p:not(.eyebrow) {
  max-width: 520px;
  margin: 23px auto 31px;
  color: #9ca496;
}


@media (max-width: 1060px) {
  :root {
    --container: min(100% - 40px, 940px);
  }

  .hero__inner {
    gap: 35px;
  }

  .hero__visual {
    transform: scale(0.9);
  }

  .conversation__layout,
  .contact__inner {
    gap: 60px;
  }

  .investment__inner {
    gap: 60px;
  }

  .section-heading--split,
  .faq__layout {
    gap: 60px;
  }

  .sector-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sector-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #d6dbd1;
  }

  .sector-grid article:nth-child(4) {
    border-top: 1px solid #d6dbd1;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 92px 0;
  }

  .announcement__inner > span:nth-child(2) {
    display: none;
  }

  .site-header {
    top: 56px;
  }

  .site-header.is-fixed {
    top: 0;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
  }

  .menu-toggle__label {
    font-size: 11px;
    font-weight: 750;
  }

  .menu-toggle__icon {
    position: relative;
    display: block;
    width: 24px;
    height: 18px;
  }

  .menu-toggle__icon i {
    position: absolute;
    right: 0;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, top 180ms ease;
  }

  .menu-toggle__icon i:first-child { top: 5px; }
  .menu-toggle__icon i:last-child { top: 12px; width: 16px; }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    top: 9px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    top: 9px;
    width: 24px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: rgba(8, 10, 8, 0.98);
    opacity: 0;
    transition: max-height 250ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    max-height: calc(100vh - 84px);
    padding: 12px 20px 28px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
  }

  .site-nav > a:not(.button) {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .site-nav .button {
    margin-top: 18px;
  }

  .hero {
    padding-top: 142px;
  }

  .hero__inner,
  .conversation__layout,
  .investment__inner,
  .contact__inner,
  .faq__layout {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding-bottom: 10px;
  }

  .hero__visual {
    width: 100%;
    max-width: 580px;
    margin-inline: auto;
    transform: none;
  }

  .hero__foot {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 22px 0;
  }

  .hero__sectors {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-card--feature {
    grid-row: auto;
    grid-column: 1 / 3;
    min-height: 560px;
  }

  .benefit-card:nth-child(4) {
    grid-column: 1 / 3;
  }

  .conversation__layout {
    gap: 58px;
  }

  .investment__inner {
    gap: 48px;
  }

  .investment-card {
    max-width: 560px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .process-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 23px;
    padding: 0;
  }

  .process-list li:not(:last-child)::before {
    top: 54px;
    bottom: -42px;
    left: 26px;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, var(--acid), var(--line));
  }

  .process-list__marker {
    margin: 0;
  }

  .principle__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .principle__mark {
    width: 140px;
    height: 140px;
    font-size: 62px;
  }

  .faq__intro {
    position: static;
  }

  .contact__inner {
    gap: 60px;
  }

  .legal-page__layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .legal-page aside {
    position: static;
  }
}

@media (max-width: 580px) {
  :root {
    --container: calc(100% - 32px);
  }

  .section {
    padding: 76px 0;
  }

  .announcement__inner {
    gap: 10px;
  }

  .announcement__logo {
    width: 112px;
  }

  .announcement a {
    font-size: 10px;
  }

  .site-header {
    top: 56px;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .hero {
    padding-top: 115px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__assurances {
    flex-direction: column;
  }

  .hero__visual {
    min-height: 500px;
    margin-top: 26px;
  }

  .chat-window {
    transform: none;
  }

  .floating-note--top {
    top: 28px;
    right: -8px;
  }

  .hero-prompt {
    bottom: 25px;
    left: -5px;
    width: 220px;
  }

  .kai-product__control {
    right: 18px;
    bottom: 50px;
  }

  .floating-note--bottom {
    bottom: 8px;
    left: -8px;
  }

  .orbit--one {
    width: 420px;
    height: 420px;
  }

  .orbit--two {
    width: 330px;
    height: 330px;
  }

  .hero__foot > p {
    margin: 0;
  }

  .hero__sectors i,
  .hero__sectors span:nth-of-type(n + 3) {
    display: none;
  }

  .section-heading h2,
  .conversation__copy h2,
  .investment__copy h2,
  .faq__intro h2,
  .contact__copy h2 {
    font-size: 39px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card--feature,
  .benefit-card:nth-child(4) {
    grid-column: auto;
  }

  .benefit-card--feature {
    min-height: 530px;
  }

  .pulse-visual {
    width: 220px;
    height: 220px;
  }

  .conversation-card__messages {
    min-height: 450px;
    padding: 38px 17px;
  }

  .conversation-card__footer {
    align-items: flex-start;
    gap: 12px;
  }

  .sector-grid {
    grid-template-columns: 1fr;
  }

  .sector-grid article + article,
  .sector-grid article:nth-child(3),
  .sector-grid article:nth-child(4) {
    border-top: 1px solid #d6dbd1;
    border-left: 0;
  }

  .sector-grid article {
    min-height: auto;
  }

  .sector-grid__icon {
    margin-bottom: 40px;
  }

  .principle blockquote footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .principle blockquote footer strong {
    padding: 0;
    border: 0;
  }

  .contact-form {
    padding: 23px 18px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
    gap: 40px;
  }

  .site-footer__links {
    flex-direction: column;
    gap: 36px;
  }

  .site-footer__bottom {
    gap: 6px;
  }

  .legal-header__inner > img {
    width: 128px;
  }

  .legal-page {
    padding: 72px 0 84px;
  }
}

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