:root {
  --background: #071723;
  --background-soft: #0b1f2b;
  --surface: #f5f7fa;
  --surface-dark: #102b3a;
  --primary: #22b8f2;
  --primary-strong: #18d9ff;
  --secondary: #ffa733;
  --secondary-strong: #ff8c2a;
  --text: #ffffff;
  --text-muted: #b8c2cc;
  --text-dark: #101820;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --font: "Inter", "Segoe UI", Arial, sans-serif;
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--background);
  overflow-x: hidden;
  width: 100%;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px var(--gutter);
  background: linear-gradient(180deg, rgba(7, 23, 35, 0.82), rgba(7, 23, 35, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 23, 35, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: clamp(126px, 12vw, 178px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.brand-logo-footer {
  width: min(190px, 62vw);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 3px solid var(--secondary);
  border-radius: 50%;
  color: var(--secondary);
  background: rgba(255, 167, 51, 0.1);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a,
.site-nav button,
.site-footer a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav button:hover,
.site-footer a:hover {
  color: var(--secondary);
}

.nav-agent-trigger {
  cursor: pointer;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 700;
}

.header-cta,
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta::before,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.header-cta:hover::before,
.btn:hover::before {
  transform: translateX(120%);
}

.header-cta,
.btn-primary {
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-strong));
  box-shadow: 0 14px 32px rgba(255, 140, 42, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
  border-color: rgba(24, 217, 255, 0.68);
  box-shadow: 0 0 28px rgba(24, 217, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn::after,
.service-card::before,
.benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 2px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--button-border-angle),
    rgba(255, 255, 255, 0.06),
    rgba(255, 167, 51, 0.95) 18%,
    rgba(24, 217, 255, 0.9) 42%,
    rgba(34, 184, 242, 0.22) 70%,
    rgba(255, 255, 255, 0.06) 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.btn:hover::after,
.service-card:hover::before,
.benefit:hover::before {
  opacity: 1;
  animation: button-border-flow 2.8s linear infinite;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px var(--gutter) 92px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  filter: saturate(1.05) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 23, 35, 0.98) 0%, rgba(7, 23, 35, 0.78) 42%, rgba(7, 23, 35, 0.22) 78%),
    linear-gradient(180deg, rgba(7, 23, 35, 0.42) 0%, rgba(7, 23, 35, 0.04) 48%, #071723 100%);
}

.hero-glow {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.hero-glow-cyan {
  right: 7%;
  top: 22%;
  width: 230px;
  height: 230px;
  border: 2px solid rgba(24, 217, 255, 0.65);
  box-shadow: 0 0 70px rgba(24, 217, 255, 0.5);
}

.hero-glow-orange {
  right: -40px;
  bottom: 14%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 167, 51, 0.95), rgba(255, 167, 51, 0));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 4px;
}

.hero-title span {
  display: block;
}

.hero-title-small {
  font-size: clamp(1.7rem, 3.2vw, 3.2rem);
  line-height: 1.02;
}

.hero-title-main {
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  line-height: 0.92;
  color: var(--primary-strong);
  text-transform: uppercase;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 630px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.hero-brand-logo {
  width: clamp(190px, 28vw, 330px);
  height: auto;
  margin: 0 0 22px;
  object-fit: contain;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.34));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.hero-proof span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.benefits,
.services,
.process,
.faq,
.cta-band,
.site-footer {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.benefits {
  padding-top: 36px;
  padding-bottom: 84px;
  background:
    radial-gradient(circle at 8% 12%, rgba(34, 184, 242, 0.22), transparent 22%),
    var(--background);
}

.section-heading {
  max-width: var(--container);
  margin: 0 auto 34px;
  color: var(--text-dark);
}

.section-heading-dark {
  color: var(--text);
}

.section-heading p {
  max-width: 700px;
  color: #576675;
  line-height: 1.65;
}

.section-heading-dark p {
  color: var(--text-muted);
}

.benefit-grid,
.service-grid,
.process,
.faq-list,
.cta-band,
.site-footer {
  width: min(100%, var(--container));
  margin: 0 auto;
}

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

.benefit {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(16, 43, 58, 0.76);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit::after,
.service-card::after,
.step::after,
details::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(24, 217, 255, 0.18), transparent 34%, rgba(255, 167, 51, 0.12));
  opacity: 0;
  transition: opacity 180ms ease;
}

.benefit:hover,
.service-card:hover,
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 217, 255, 0.46);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26), 0 0 34px rgba(24, 217, 255, 0.13);
}

.benefit:hover::after,
.service-card:hover::after,
.step:hover::after,
details[open]::after {
  opacity: 1;
}

.icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--text);
  background: rgba(34, 184, 242, 0.24);
}

.icon i {
  font-size: 1.35rem;
  line-height: 1;
}

.benefit p,
.step p {
  color: var(--text-muted);
  line-height: 1.58;
}

.services {
  padding-top: 82px;
  padding-bottom: 96px;
  color: var(--text-dark);
  background: var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(16, 24, 32, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card-accent {
  color: var(--text);
  background: linear-gradient(145deg, #22b8f2, #116d9a);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border: 1px solid rgba(34, 184, 242, 0.28);
  border-radius: 50%;
  color: var(--primary);
  font-weight: 900;
  background: rgba(34, 184, 242, 0.1);
}

.service-card-accent .service-icon {
  border-color: rgba(255, 255, 255, 0.36);
  color: #dff8ff;
  background: rgba(255, 255, 255, 0.16);
}

.service-card p {
  color: #607080;
  line-height: 1.6;
}

.service-card-accent p {
  color: rgba(255, 255, 255, 0.82);
}

.service-card a {
  margin-top: auto;
  color: var(--text-dark);
  font-weight: 900;
}

.service-card-accent a {
  color: var(--text);
}

.process {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 90px;
}

.process-copy p {
  color: var(--text-muted);
  line-height: 1.68;
}

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

.step {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.step span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--text-dark);
  background: var(--secondary);
  font-weight: 900;
}

.step strong {
  display: block;
  margin-bottom: 10px;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 0;
  padding-top: 44px;
  padding-bottom: 44px;
  border-radius: 0;
  background:
    radial-gradient(circle at 84% 30%, rgba(255, 167, 51, 0.25), transparent 30%),
    linear-gradient(135deg, #0f415a, #0a2637);
}

.cta-band h2 {
  margin-bottom: 12px;
}

.cta-band p:last-child {
  margin-bottom: 0;
  color: var(--text-muted);
}

.faq {
  padding-top: 86px;
  padding-bottom: 96px;
  color: var(--text-dark);
  background: #fff;
}

.faq-shell {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  width: min(100%, var(--container));
  margin: 0 auto;
  align-items: start;
}

.agent-panel {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(24, 217, 255, 0.24);
  border-radius: 18px;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(24, 217, 255, 0.22), transparent 34%),
    linear-gradient(160deg, #0a2231, #06151f);
  box-shadow: 0 24px 70px rgba(7, 23, 35, 0.28);
}

.agent-status {
  display: flex;
  gap: 10px;
}

.agent-status-logo {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.agent-status-logo > div {
  width: 100%;
}

.agent-header-logo {
  width: 178px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.24));
}

.agent-drawer .agent-header-logo {
  width: 224px;
  max-height: 58px;
}

.agent-status p {
  margin: 3px 0 0;
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.78rem;
}

.agent-prompts {
  display: grid;
  justify-items: start;
  gap: 9px;
  padding: 58px 16px 6px;
}

.agent-prompts button {
  cursor: pointer;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--text);
  font: inherit;
  font-size: 0.73rem;
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(2, 8, 23, 0.12);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.agent-prompts button:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 217, 255, 0.58);
  background: rgba(34, 184, 242, 0.16);
  box-shadow: 0 14px 28px rgba(2, 8, 23, 0.2);
}

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

details {
  position: relative;
  border: 1px solid #dbe4ec;
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

details[open] {
  border-color: rgba(34, 184, 242, 0.48);
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.1);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

summary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--primary-strong);
  outline-offset: 3px;
}

.agent-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--text);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.22), transparent 1.35rem),
    linear-gradient(135deg, var(--secondary) 0%, var(--secondary-strong) 100%);
  box-shadow:
    0 14px 34px rgba(2, 8, 23, 0.34),
    0 0 42px rgba(255, 140, 42, 0.42);
  cursor: pointer;
  animation: agent-trigger-in 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: scale 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}

.agent-fab span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: var(--text);
  background: transparent;
  font-size: 2rem;
  font-weight: 900;
}

.agent-fab:hover {
  scale: 1.05;
  box-shadow:
    0 18px 42px rgba(2, 8, 23, 0.42),
    0 0 52px rgba(255, 140, 42, 0.58);
}

.agent-drawer {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 10000;
  width: min(360px, calc(100vw - 32px));
  height: min(454px, calc(100vh - 112px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--text);
  background:
    linear-gradient(rgba(34, 184, 242, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 184, 242, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(34, 184, 242, 0.2), transparent 16rem),
    radial-gradient(circle at 88% 78%, rgba(255, 167, 51, 0.16), transparent 18rem),
    rgba(7, 23, 35, 0.96);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  box-shadow:
    0 28px 90px rgba(2, 8, 23, 0.64),
    0 0 80px rgba(34, 184, 242, 0.24);
  transform: translateY(18px) scale(0.96);
  transform-origin: right bottom;
  opacity: 0;
  visibility: hidden;
  transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  backdrop-filter: blur(24px);
}

.agent-drawer.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.agent-drawer-header {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 16px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 167, 51, 0.22), transparent 9rem),
    linear-gradient(92deg, rgba(34, 184, 242, 0.9), rgba(10, 67, 94, 0.94));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.agent-close {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.agent-chat-intro {
  padding: 8px 10px 0;
}

.agent-message {
  width: fit-content;
  max-width: min(290px, 100%);
  margin: 0;
  padding: 13px 14px;
  border-radius: 15px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.52;
  white-space: pre-line;
  box-shadow: 0 12px 28px rgba(2, 8, 23, 0.18);
}

.agent-message-assistant {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top-left-radius: 4px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.agent-message-user {
  border-top-right-radius: 4px;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-strong));
}

.agent-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px 0;
}

.agent-messages .agent-message-user {
  align-self: flex-end;
}

.agent-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 184, 242, 0.5) rgba(255, 255, 255, 0.06);
}

.agent-scroll::-webkit-scrollbar {
  width: 7px;
}

.agent-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.agent-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(34, 184, 242, 0.46);
}

.agent-drawer .faq-list {
  display: none;
}

.agent-composer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px 16px 14px;
  background: linear-gradient(180deg, rgba(7, 23, 35, 0), rgba(7, 23, 35, 0.86) 22%, rgba(7, 23, 35, 0.98));
}

.agent-composer input {
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  padding: 0 12px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  outline: none;
}

.agent-composer input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.agent-composer button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-strong));
  padding: 0 12px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.agent-drawer details {
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.agent-drawer details:not([open]) {
  display: none;
}

.agent-drawer details::after,
.agent-drawer details[open]::after {
  display: none;
  opacity: 0;
  background: none;
}

.agent-drawer details[open] {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.agent-drawer summary {
  padding: 10px 11px;
  font-size: 0.76rem;
}

.agent-drawer details p {
  padding: 0 11px 11px;
  color: var(--text-muted);
  font-size: 0.76rem;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: #576675;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
  color: var(--text-muted);
  background: var(--background);
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer .brand {
  color: var(--text);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

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

  .site-header.is-open .site-nav {
    position: absolute;
    top: 76px;
    left: var(--gutter);
    right: var(--gutter);
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(7, 23, 35, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav a {
    padding: 12px;
  }

  .site-header.is-open .site-nav button {
    padding: 12px;
    text-align: left;
  }

  .hero {
    min-height: 700px;
    padding-top: 112px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 23, 35, 0.96) 0%, rgba(7, 23, 35, 0.78) 52%, rgba(7, 23, 35, 0.12) 100%),
      linear-gradient(180deg, rgba(7, 23, 35, 0.16) 0%, rgba(7, 23, 35, 0.28) 44%, #071723 100%);
  }

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

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

  .process,
  .cta-band,
  .site-footer,
  .faq-shell {
    grid-template-columns: 1fr;
  }

  .agent-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand-logo {
    width: 144px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 760px;
    padding-bottom: 64px;
    padding-left: 24px;
    padding-right: 24px;
    max-width: 100vw;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
    max-width: calc(100vw - 48px);
  }

  .hero-brand-logo {
    width: min(238px, 76vw);
    margin-bottom: 18px;
  }

  h1 {
    max-width: 100%;
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .hero-title {
    gap: 3px;
  }

  .hero-title-small {
    font-size: clamp(1.45rem, 7.1vw, 1.92rem);
  }

  .hero-title-main {
    font-size: clamp(1.92rem, 8.7vw, 2.45rem);
  }

  h2 {
    font-size: clamp(1.58rem, 7.4vw, 2.05rem);
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .hero-copy {
    font-size: clamp(1rem, 3.8vw, 1.12rem);
    line-height: 1.55;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-proof,
  .hero-actions {
    max-width: 100%;
    min-width: 0;
  }

  .hero-media img {
    object-position: 100% 0%;
    filter: saturate(1.12) contrast(1.08) brightness(1.18);
    transform: scale(1.16);
    transform-origin: 100% 0%;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
  }

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

  .service-card,
  .benefit,
  .step {
    min-height: auto;
  }

  .agent-fab {
    left: calc(100vw - 72px);
    right: auto;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .agent-drawer {
    left: 14px;
    right: 14px;
    bottom: 80px;
    width: auto;
    height: min(454px, calc(100vh - 96px));
  }

  .agent-drawer .agent-header-logo {
    width: 174px;
    max-height: 44px;
  }

  .agent-prompts {
    padding-top: 30px;
  }

  .agent-prompts button {
    min-height: 32px;
    font-size: 0.7rem;
  }

  .services,
  .process,
  .faq {
    padding-top: 62px;
    padding-bottom: 70px;
  }
}

@property --button-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes button-border-flow {
  to {
    --button-border-angle: 360deg;
  }
}

@keyframes agent-trigger-in {
  from {
    opacity: 0;
    transform: translateX(44px) scale(0.72);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
