:root {
  --ink: #0b0c0e;
  --ink-soft: #121317;
  --panel: #17181d;
  --panel-2: #1d1e24;
  --paper: #f3f0e8;
  --paper-2: #e9e5da;
  --white: #fffefa;
  --muted: #a5a6ad;
  --muted-dark: #62636b;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(11, 12, 14, 0.12);
  --coral: #ff554c;
  --coral-2: #ef3934;
  --orange: #ff8a3d;
  --lime: #c6f36b;
  --teal: #39d8b0;
  --sky: #5fc9ff;
  --blue: #4f7cff;
  --amber: #ffc55c;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --shell: 1180px;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Be Vietnam Pro", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
  font-family: var(--body);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.035em;
}

::selection {
  background: var(--coral);
  color: var(--white);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.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;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: top 0.25s ease;
}

.header-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 7px 8px 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(13, 14, 17, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(145deg, var(--coral), var(--coral-2));
  box-shadow: 0 8px 25px rgba(255, 85, 76, 0.3);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 14px;
  line-height: 1;
}

.brand-copy img {
  width: 105px;
  filter: invert(1);
  opacity: 0.82;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: #c9c9ce;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--coral);
  transition: right 0.25s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover::after {
  right: 0;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #f24139);
  box-shadow: 0 13px 32px rgba(255, 85, 76, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(255, 85, 76, 0.36);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.17);
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.button-small {
  min-height: 48px;
  padding: 0 19px;
  font-size: 13px;
}

.header-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), #f1403a);
}

.hero {
  min-height: 860px;
  padding: 170px 0 100px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(255, 85, 76, 0.05));
}

.hero-grid,
.custom-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  top: 12%;
  left: 50%;
  width: 1px;
  height: 72%;
  border-left: 1px dashed rgba(255, 85, 76, 0.28);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-one {
  top: 80px;
  right: 6%;
  width: 420px;
  height: 420px;
  background: rgba(255, 85, 76, 0.17);
  animation: drift 16s ease-in-out infinite alternate;
}

.hero-orb-two {
  bottom: 20px;
  left: -140px;
  width: 380px;
  height: 380px;
  background: rgba(57, 216, 176, 0.07);
  animation: drift 20s ease-in-out infinite alternate-reverse;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: 64px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: #d9d9dc;
  background: rgba(255, 255, 255, 0.045);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(57, 216, 176, 0.12), 0 0 18px rgba(57, 216, 176, 0.6);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero h1 {
  max-width: 650px;
  margin: 28px 0 24px;
  color: var(--white);
  font-size: clamp(52px, 6.2vw, 86px);
  font-weight: 800;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--coral);
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 32px;
  color: #bfc0c5;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-left: -8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
}

.proof-avatars span:first-child {
  margin-left: 0;
  background: var(--coral);
  color: var(--white);
}

.proof-avatars span:nth-child(2) {
  background: var(--lime);
}

.proof-avatars span:nth-child(3) {
  background: var(--sky);
}

.proof-avatars span:nth-child(4) {
  background: var(--teal);
}

.hero-proof p {
  margin: 0;
  color: #8e8f96;
  font-size: 12px;
  line-height: 1.55;
}

.hero-proof strong {
  color: #e6e6e8;
}

.command-center {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(30, 31, 37, 0.96), rgba(15, 16, 19, 0.98));
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.5), 0 0 80px rgba(255, 85, 76, 0.08);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.command-center::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 85, 76, 0.32), transparent 36%, transparent 64%, rgba(57, 216, 176, 0.15));
  filter: blur(12px);
  opacity: 0.55;
}

.command-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 62px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.command-topbar > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.command-topbar strong {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4e4f56;
}

.window-dots i:first-child {
  background: var(--coral);
}

.window-dots i:nth-child(2) {
  background: var(--amber);
}

.window-dots i:nth-child(3) {
  background: var(--teal);
}

.system-online {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #94959b;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.system-online i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}

.command-body {
  padding: 20px;
}

.phone-command {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(255, 85, 76, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 85, 76, 0.11), rgba(255, 255, 255, 0.03));
}

.phone-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--white);
  background: var(--coral);
  font-size: 10px;
  font-weight: 800;
}

.phone-command small {
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone-command p {
  margin: 4px 0 0;
  color: #e6e6e8;
  font-size: 13px;
  line-height: 1.55;
}

.agent-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.agent-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.agent-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
}

.agent-coral {
  background: var(--coral);
  color: var(--white);
}

.agent-lime {
  background: var(--lime);
}

.agent-sky {
  background: var(--sky);
}

.agent-task {
  min-width: 0;
}

.agent-task strong,
.agent-task span {
  display: block;
}

.agent-task strong {
  color: #efeff1;
  font-size: 12px;
  line-height: 1.3;
}

.agent-task span {
  margin-top: 2px;
  overflow: hidden;
  color: #84858c;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-task i {
  display: block;
  height: 3px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #292a31;
}

.agent-task i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--orange));
  animation: progressGlow 2.6s ease-in-out infinite;
}

.agent-row em {
  align-self: start;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--amber);
  background: rgba(255, 197, 92, 0.08);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.agent-row em.done {
  color: var(--teal);
  background: rgba(57, 216, 176, 0.09);
}

.morning-result {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  color: var(--ink);
  background: var(--paper);
}

.sun-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--amber);
  font-size: 18px;
}

.morning-result small,
.morning-result strong {
  display: block;
}

.morning-result small {
  color: #77756e;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.morning-result strong {
  margin-top: 2px;
  font-size: 11px;
}

.result-arrow {
  font-size: 18px;
  font-weight: 800;
}

.data-line {
  position: absolute;
  z-index: -1;
  border-color: rgba(255, 85, 76, 0.45);
  border-style: dashed;
  pointer-events: none;
}

.data-line::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 18px var(--coral);
}

.data-line-one {
  top: -54px;
  right: 28px;
  width: 125px;
  height: 54px;
  border-width: 1px 1px 0 0;
}

.data-line-one::after {
  top: -4px;
  left: -4px;
  animation: nodePulse 3s ease-in-out infinite;
}

.data-line-two {
  right: -56px;
  bottom: 72px;
  width: 56px;
  height: 90px;
  border-width: 0 0 1px 1px;
}

.data-line-two::after {
  right: -4px;
  bottom: -4px;
  background: var(--teal);
  box-shadow: 0 0 18px var(--teal);
  animation: nodePulse 3.6s ease-in-out infinite;
}

.capability-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #111216;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  min-height: 56px;
  animation: ticker 34s linear infinite;
}

.ticker-track span {
  color: #a9aab0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-track i {
  color: var(--coral);
  font-style: normal;
}

.category-section {
  padding-top: 100px;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.centered {
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 750;
  line-height: 1.05;
}

.section-heading p {
  max-width: 680px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.heading-split {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.heading-split h2 {
  margin-bottom: 0;
}

.heading-split > p {
  margin: 0 0 4px;
}

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

.category-card {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(11, 12, 14, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.08), 0 0 0 48px rgba(255, 255, 255, 0.05);
  transition: transform 0.35s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
}

.category-card:hover::before {
  transform: scale(1.12);
}

.category-coral {
  background: linear-gradient(145deg, #ff665d, #ed3833);
  color: var(--white);
}

.category-lime {
  background: linear-gradient(145deg, #d4fa89, #aee948);
}

.category-blue {
  background: linear-gradient(145deg, #68b9ff, #477af2);
  color: var(--white);
}

.category-cream {
  background: linear-gradient(145deg, #f7f2e8, #ddd5c5);
}

.category-number {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
}

.category-card div {
  position: relative;
  z-index: 1;
}

.category-card strong,
.category-card small {
  display: block;
}

.category-card strong {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.15;
}

.category-card small {
  margin-top: 6px;
  opacity: 0.72;
  font-size: 11px;
}

.category-card b {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 15px;
}

.assistant-section {
  padding-top: 80px;
}

.assistant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.assistant-card {
  --accent: var(--coral);
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 0%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 34%),
    linear-gradient(145deg, #18191e, #121317);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.assistant-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: 86px;
  width: 150px;
  height: 150px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 24px color-mix(in srgb, var(--accent) 4%, transparent), 0 0 0 48px color-mix(in srgb, var(--accent) 3%, transparent);
  pointer-events: none;
}

.assistant-card:hover,
.assistant-card.is-highlighted {
  z-index: 2;
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 48%, transparent);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3), 0 0 45px color-mix(in srgb, var(--accent) 9%, transparent);
}

.accent-coral {
  --accent: var(--coral);
}

.accent-lime {
  --accent: var(--lime);
}

.accent-sky {
  --accent: var(--sky);
}

.accent-blue {
  --accent: var(--blue);
}

.accent-amber {
  --accent: var(--amber);
}

.accent-teal {
  --accent: var(--teal);
}

.assistant-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.assistant-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 25%, transparent);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.accent-coral .assistant-mark,
.accent-blue .assistant-mark {
  color: var(--white);
}

.assistant-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8d8e95;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.assistant-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 9px var(--teal);
}

.assistant-code {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.assistant-card h3 {
  margin: 9px 0 4px;
  font-size: 29px;
  line-height: 1.1;
}

.assistant-tagline {
  color: #dadadd;
  font-size: 13px;
}

.assistant-card > p {
  margin: 18px 0;
  color: #97989f;
  font-size: 13px;
  line-height: 1.7;
}

.assistant-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assistant-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c4c4c8;
  font-size: 12px;
}

.assistant-card li span {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--accent);
  font-size: 10px;
  font-weight: 900;
}

.assistant-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
  margin-top: auto;
  padding-top: 26px;
}

.assistant-card-footer small,
.assistant-card-footer strong {
  display: block;
}

.assistant-card-footer small {
  color: #77787f;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.assistant-card-footer strong {
  margin-top: 4px;
  color: var(--white);
  font-family: var(--display);
  font-size: 14px;
}

.assistant-card-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 10px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, transparent);
  font-size: 10px;
  font-weight: 800;
}

.night-section,
.value-section,
.advisor-section,
.faq-section {
  background: var(--paper);
  color: var(--ink);
}

.night-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 100px;
}

.dark-kicker {
  border-color: rgba(11, 12, 14, 0.12);
  color: var(--coral-2);
  background: rgba(255, 255, 255, 0.52);
}

.night-copy h2 {
  margin: 22px 0 22px;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.03;
}

.night-copy > p {
  color: var(--muted-dark);
  line-height: 1.8;
}

.quote-block {
  position: relative;
  margin-top: 32px;
  padding: 24px 24px 24px 62px;
  border: 1px solid rgba(11, 12, 14, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
}

.quote-block > span {
  position: absolute;
  top: 12px;
  left: 20px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.quote-block p {
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.day-timeline {
  position: relative;
  display: grid;
  gap: 12px;
}

.day-timeline::before {
  content: "";
  position: absolute;
  top: 35px;
  bottom: 35px;
  left: 78px;
  width: 1px;
  border-left: 1px dashed rgba(11, 12, 14, 0.22);
}

.day-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 54px 24px 1fr;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(11, 12, 14, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  transition: transform 0.2s ease, background 0.2s ease;
}

.day-timeline article:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.82);
}

.day-timeline time {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  margin-left: 5px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 1px rgba(11, 12, 14, 0.18);
}

.day-timeline small,
.day-timeline strong,
.day-timeline p {
  display: block;
}

.day-timeline small {
  color: var(--coral-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.day-timeline strong {
  margin-top: 3px;
  font-family: var(--display);
  font-size: 17px;
}

.day-timeline p {
  margin: 3px 0 0;
  color: var(--muted-dark);
  font-size: 12px;
}

.day-timeline .timeline-finish {
  color: var(--white);
  background: var(--ink);
}

.timeline-finish p {
  color: #a5a6ad;
}

.timeline-finish .timeline-dot {
  border-color: var(--ink);
  background: var(--teal);
}

.custom-section {
  isolation: isolate;
}

.custom-grid {
  opacity: 0.35;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 75%);
}

.custom-section .section-heading h2 span {
  color: var(--coral);
}

.training-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.training-flow::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 9%;
  right: 9%;
  border-top: 1px dashed rgba(255, 85, 76, 0.36);
}

.training-flow article {
  position: relative;
  min-height: 270px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.training-flow article > span {
  display: block;
  color: #6f7077;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
}

.training-flow article > i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 18px 0 34px;
  border: 1px solid rgba(255, 85, 76, 0.42);
  border-radius: 10px;
  color: var(--coral);
  background: var(--ink);
  font-size: 9px;
  font-style: normal;
  box-shadow: 0 0 24px rgba(255, 85, 76, 0.13);
}

.training-flow h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.2;
}

.training-flow p {
  margin: 0;
  color: #8f9097;
  font-size: 12px;
  line-height: 1.65;
}

.custom-statement {
  max-width: 920px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 48px auto 0;
  padding: 24px;
  border: 1px solid rgba(255, 85, 76, 0.22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 85, 76, 0.1), rgba(255, 255, 255, 0.03));
}

.statement-mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 17px;
  background: var(--coral);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
}

.custom-statement p {
  margin: 0;
  color: #b6b7bc;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.5;
}

.custom-statement strong {
  color: var(--white);
}

.value-section .section-heading {
  color: var(--ink);
}

.value-bento {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.value-bento article {
  overflow: hidden;
  border: 1px solid rgba(11, 12, 14, 0.11);
  border-radius: var(--radius);
}

.value-main {
  grid-row: 1 / 3;
  min-height: 510px;
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 85, 76, 0.26), transparent 38%),
    var(--ink);
}

.value-main > div:first-child {
  display: flex;
  align-items: flex-end;
  gap: 9px;
}

.value-icon {
  color: var(--coral);
  font-family: var(--display);
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.value-label {
  margin-bottom: 3px;
  color: #77787f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.value-main h3 {
  max-width: 520px;
  margin: 48px 0 18px;
  font-size: 38px;
  line-height: 1.08;
}

.value-main p {
  color: #9a9ba1;
  font-size: 14px;
}

.value-main ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.value-main li {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #d7d7da;
  background: rgba(255, 255, 255, 0.04);
  font-size: 10px;
  font-weight: 700;
}

.value-small {
  min-height: 230px;
  padding: 26px;
}

.value-phone {
  background: linear-gradient(145deg, #ff665d, #ed3933);
  color: var(--white);
}

.value-schedule {
  background: var(--lime);
  color: var(--ink);
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 18px;
}

.value-small h3 {
  margin: 36px 0 8px;
  font-size: 24px;
  line-height: 1.1;
}

.value-small p {
  margin: 0;
  opacity: 0.72;
  font-size: 12px;
}

.value-wide {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.55);
}

.approval-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.approval-flow span {
  padding: 10px 12px;
  border: 1px solid rgba(11, 12, 14, 0.13);
  border-radius: 9px;
  background: var(--white);
  font-size: 10px;
  font-weight: 800;
}

.approval-flow span:nth-child(3) {
  border-color: var(--coral);
  color: var(--coral-2);
}

.approval-flow b {
  color: #88877f;
}

.value-wide h3 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.15;
}

.value-wide p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 12px;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 12, 14, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
}

.fact-strip div {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-right: 1px solid rgba(11, 12, 14, 0.09);
  text-align: center;
}

.fact-strip div:last-child {
  border-right: 0;
}

.fact-strip strong {
  color: var(--coral-2);
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}

.fact-strip span {
  margin-top: 8px;
  color: var(--muted-dark);
  font-size: 10px;
  font-weight: 700;
}

.process-section::before {
  content: "";
  position: absolute;
  top: -240px;
  left: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 85, 76, 0.08);
  filter: blur(90px);
  transform: translateX(-50%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-grid article {
  position: relative;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.process-grid article::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 45px;
  right: -19px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--coral);
  background: var(--ink);
  font-weight: 800;
}

.process-grid article:last-child::after {
  display: none;
}

.process-grid article > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 48px;
  border-radius: 14px;
  color: var(--white);
  background: var(--coral);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(255, 85, 76, 0.22);
}

.process-grid small {
  color: #696a71;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-grid h3 {
  margin: 8px 0 10px;
  font-size: 21px;
}

.process-grid p {
  margin: 0;
  color: #8f9096;
  font-size: 12px;
}

.advisor-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 90px;
}

.advisor-copy h2 {
  margin: 20px 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.04;
}

.advisor-copy > p {
  color: var(--muted-dark);
}

.advisor-promises {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.advisor-promises span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.advisor-promises i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 10px;
  font-style: normal;
}

.chat-panel {
  overflow: hidden;
  border: 1px solid rgba(11, 12, 14, 0.13);
  border-radius: 26px;
  background: #fffefa;
  box-shadow: 0 28px 70px rgba(34, 30, 22, 0.13);
}

.chat-header {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid rgba(11, 12, 14, 0.09);
}

.chat-header > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.chat-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--white);
  background: var(--coral);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.chat-header strong,
.chat-header small {
  display: block;
}

.chat-header strong {
  font-family: var(--display);
  font-size: 14px;
}

.chat-header small {
  margin-top: 2px;
  color: #77786f;
  font-size: 9px;
}

.chat-header small i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: #32c997;
}

.chat-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #686961;
  background: #f0ede4;
  font-size: 9px;
  font-weight: 800;
}

.chat-secure i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #32c997;
  box-shadow: 0 0 0 4px rgba(50, 201, 151, 0.12);
}

.chat-messages {
  min-height: 220px;
  max-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 20px;
  background:
    linear-gradient(rgba(11, 12, 14, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 12, 14, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

.chat-message {
  max-width: 84%;
  padding: 13px 15px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.65;
}

.chat-bot {
  align-self: flex-start;
  border: 1px solid rgba(11, 12, 14, 0.09);
  border-radius: 14px 14px 14px 4px;
  background: var(--white);
}

.chat-user {
  align-self: flex-end;
  border-radius: 14px 14px 4px 14px;
  color: var(--white);
  background: var(--ink);
}

.chat-loading::after {
  content: "...";
  animation: typing 1.2s steps(4, end) infinite;
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 14px 20px 0;
}

.chat-suggestions button {
  padding: 8px 10px;
  border: 1px solid rgba(11, 12, 14, 0.1);
  border-radius: 999px;
  color: #5f6059;
  background: #f5f2ea;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.chat-suggestions button:hover {
  border-color: rgba(255, 85, 76, 0.4);
  color: var(--coral-2);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 20px 8px;
}

.chat-form textarea {
  width: 100%;
  min-height: 58px;
  resize: none;
  padding: 12px 14px;
  border: 1px solid rgba(11, 12, 14, 0.13);
  border-radius: 13px;
  outline: 0;
  background: var(--white);
  font-size: 12px;
}

.chat-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 85, 76, 0.08);
}

.chat-form button {
  min-width: 84px;
  border: 0;
  border-radius: 13px;
  color: var(--white);
  background: var(--coral);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.chat-form button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.chat-note {
  display: block;
  padding: 0 20px 15px;
  color: #8b8b84;
  font-size: 9px;
}

.chat-note b {
  color: #5f6059;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.price-card.featured {
  border-color: rgba(255, 85, 76, 0.5);
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 85, 76, 0.22), transparent 35%),
    #17181d;
  box-shadow: 0 25px 70px rgba(255, 85, 76, 0.1);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-label {
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.price-card h3 {
  margin: 16px 0 10px;
  font-size: 27px;
}

.price-card > p {
  min-height: 68px;
  color: #8f9096;
  font-size: 12px;
}

.price {
  min-height: 70px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 22px 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price small {
  color: #77787e;
  font-size: 10px;
}

.price strong {
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: -0.05em;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: #b4b5ba;
  font-size: 12px;
}

.price-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--teal);
  font-weight: 900;
}

.full-button {
  width: 100%;
  margin-top: auto;
}

.cost-note {
  margin: 24px auto 0;
  color: #77787f;
  font-size: 11px;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  margin: 20px 0 16px;
  font-size: 50px;
  line-height: 1.03;
}

.faq-intro p {
  color: var(--muted-dark);
}

.faq-intro > a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--coral-2);
  font-size: 12px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-list details {
  border: 1px solid rgba(11, 12, 14, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.48);
  transition: background 0.2s ease;
}

.faq-list details[open] {
  background: rgba(255, 255, 255, 0.85);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  min-height: 68px;
  padding: 0 18px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(11, 12, 14, 0.12);
  border-radius: 50%;
  color: var(--coral-2);
  font-family: var(--body);
  font-size: 18px;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 20px;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.8;
}

.lead-section {
  padding: 100px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 197, 92, 0.18), transparent 30%),
    linear-gradient(145deg, #e93e37, #ff6258);
}

.lead-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.lead-copy .section-kicker {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.lead-copy h2 {
  margin: 20px 0;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.02;
}

.lead-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 30px;
}

.lead-contact span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.lead-contact small,
.lead-contact strong {
  display: block;
}

.lead-contact small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-contact strong {
  margin-top: 3px;
  font-size: 11px;
}

.lead-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 80px rgba(112, 22, 18, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #4f504b;
  font-size: 10px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(11, 12, 14, 0.14);
  border-radius: 11px;
  outline: 0;
  color: var(--ink);
  background: #faf8f2;
  font-size: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 85, 76, 0.08);
}

.field-error {
  display: block;
  margin-top: 5px;
  color: #c42420;
  font-size: 9px;
  font-weight: 700;
}

.form-alert {
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 10px;
  color: #8e201d;
  background: #ffe5e2;
  font-size: 11px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 2px;
  color: #5e5f59;
  cursor: pointer;
  font-size: 10px;
  line-height: 1.5;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--coral);
}

.consent-error {
  margin-bottom: 10px;
}

.submit-button {
  width: 100%;
  margin-top: 20px;
  border: 0;
}

.form-note {
  margin: 11px 0 0;
  color: #81827b;
  font-size: 9px;
  text-align: center;
}

.final-cta {
  padding: 110px 0;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 85, 76, 0.22), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}

.final-cta-inner {
  position: relative;
  max-width: 920px;
  text-align: center;
}

.final-cta h2 {
  margin: 22px 0 32px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.04;
}

.site-footer {
  padding: 66px 0 24px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand > p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #7f8087;
  font-size: 11px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid > div > strong {
  margin-bottom: 6px;
  color: #d4d4d7;
  font-family: var(--display);
  font-size: 12px;
}

.footer-grid a,
.footer-grid span {
  color: #76777e;
  font-size: 10px;
}

.footer-grid a:hover {
  color: var(--coral);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #55565c;
  font-size: 9px;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(16, 17, 20, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  font-size: 10px;
  font-weight: 800;
}

.floating-contact i {
  color: var(--coral);
  font-style: normal;
}

.toast-stack {
  position: fixed;
  top: 96px;
  left: 50%;
  z-index: 150;
  width: min(540px, calc(100% - 32px));
  transform: translateX(-50%);
}

.toast {
  padding: 15px 18px;
  border: 1px solid rgba(57, 216, 176, 0.4);
  border-radius: 14px;
  color: var(--white);
  background: rgba(12, 52, 42, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(16px);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease var(--delay, 0s), transform 0.65s ease var(--delay, 0s);
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.82);
    opacity: 0.7;
  }
}

@keyframes drift {
  from {
    transform: translate3d(-20px, -10px, 0) scale(0.94);
  }
  to {
    transform: translate3d(30px, 25px, 0) scale(1.08);
  }
}

@keyframes progressGlow {
  0%,
  100% {
    filter: brightness(0.9);
  }
  50% {
    filter: brightness(1.35);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes typing {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
  }

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

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card {
    min-height: 180px;
  }

  .assistant-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .training-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .training-flow::before {
    display: none;
  }

  .value-bento {
    grid-template-columns: 1fr 1fr;
  }

  .value-main {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 440px;
  }

  .value-wide {
    grid-column: 1 / 3;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid article:nth-child(2)::after {
    display: none;
  }

  .advisor-layout {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 8px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(13, 14, 17, 0.96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    border-radius: 9px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .site-nav a::after,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 140px 0 90px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(52px, 10vw, 78px);
  }

  .command-center {
    width: min(650px, 100%);
    margin: 25px auto 0;
    transform: none;
  }

  .heading-split,
  .night-layout,
  .advisor-layout,
  .faq-layout,
  .lead-shell {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .heading-split {
    align-items: start;
    gap: 20px;
  }

  .heading-split > p {
    max-width: 650px;
    margin: 0;
  }

  .faq-intro {
    position: static;
  }

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

  .price-card {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .price-card > p {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 58px;
    padding-left: 10px;
    border-radius: 15px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    font-size: 14px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy img {
    width: 86px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    background-size: 38px 38px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(43px, 13.5vw, 60px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .command-center {
    border-radius: 20px;
  }

  .command-topbar {
    padding: 0 14px;
  }

  .command-topbar strong {
    font-size: 12px;
  }

  .system-online {
    font-size: 8px;
  }

  .command-body {
    padding: 13px;
  }

  .phone-command {
    padding: 13px;
  }

  .phone-command p {
    font-size: 11px;
  }

  .agent-row {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 11px;
  }

  .agent-icon {
    width: 36px;
    height: 36px;
  }

  .agent-row em {
    display: none;
  }

  .data-line {
    display: none;
  }

  .ticker-track {
    min-height: 50px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .category-card {
    min-height: 180px;
    padding: 16px;
    border-radius: 17px;
  }

  .category-card strong {
    font-size: 17px;
  }

  .category-card small {
    font-size: 9px;
  }

  .category-card b {
    top: 14px;
    right: 14px;
    width: 29px;
    height: 29px;
  }

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

  .assistant-card {
    min-height: 490px;
  }

  .night-copy h2,
  .advisor-copy h2 {
    font-size: 40px;
  }

  .quote-block {
    padding: 22px 18px 22px 52px;
  }

  .quote-block > span {
    left: 15px;
  }

  .quote-block p {
    font-size: 16px;
  }

  .day-timeline article {
    grid-template-columns: 47px 18px 1fr;
    gap: 7px;
    padding: 15px;
  }

  .day-timeline::before {
    left: 66px;
  }

  .timeline-dot {
    margin-left: 0;
  }

  .day-timeline p {
    font-size: 10px;
  }

  .training-flow {
    grid-template-columns: 1fr;
  }

  .training-flow article {
    min-height: auto;
  }

  .training-flow article > i {
    margin-bottom: 20px;
  }

  .custom-statement {
    grid-template-columns: 1fr;
  }

  .statement-mark {
    width: 54px;
    height: 54px;
  }

  .custom-statement p {
    font-size: 17px;
  }

  .value-bento {
    grid-template-columns: 1fr;
  }

  .value-main,
  .value-wide {
    grid-column: auto;
  }

  .value-main {
    min-height: 480px;
    padding: 26px;
  }

  .value-icon {
    font-size: 72px;
  }

  .value-main h3 {
    margin-top: 36px;
    font-size: 31px;
  }

  .value-wide {
    grid-template-columns: 1fr;
  }

  .fact-strip {
    grid-template-columns: 1fr 1fr;
  }

  .fact-strip div:nth-child(2) {
    border-right: 0;
  }

  .fact-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(11, 12, 14, 0.09);
  }

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

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

  .process-grid article::after {
    display: none;
  }

  .process-grid article > span {
    margin-bottom: 30px;
  }

  .chat-header {
    padding: 0 14px;
  }

  .chat-messages {
    min-height: 260px;
    padding: 14px;
  }

  .chat-message {
    max-width: 94%;
  }

  .chat-suggestions {
    padding-right: 14px;
    padding-left: 14px;
  }

  .chat-form {
    grid-template-columns: 1fr;
    padding-right: 14px;
    padding-left: 14px;
  }

  .chat-form button {
    min-height: 46px;
  }

  .faq-intro h2 {
    font-size: 40px;
  }

  .faq-list summary {
    min-height: 64px;
    padding: 0 14px;
    font-size: 13px;
  }

  .lead-section {
    padding: 78px 0;
  }

  .lead-copy h2 {
    font-size: 40px;
  }

  .lead-contact,
  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 20px;
    border-radius: 18px;
  }

  .final-cta {
    padding: 85px 0;
  }

  .final-cta h2 {
    font-size: 37px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

  .floating-contact {
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    min-height: 44px;
  }

  .floating-contact b {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
