:root {
  color-scheme: dark;
  --bg: #070416;
  --ink: #f7f3ff;
  --muted: #b9afcf;
  --soft: #84769d;
  --line: rgba(41, 213, 255, 0.26);
  --panel: rgba(247, 243, 255, 0.045);
  --panel-strong: rgba(108, 92, 255, 0.12);
  --teal: #29d5ff;
  --teal-soft: #2367d8;
  --champagne: #a78bff;
  --gold: #9b5cff;
  --amber: #6c5cff;
  --magenta: #6c5cff;
  --violet: #a78bff;
  --dark: #0b061c;
  --light: #120a2a;
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(108, 92, 255, 0.18), transparent 30%),
    radial-gradient(circle at 64% 8%, rgba(167, 139, 255, 0.12), transparent 34%),
    linear-gradient(140deg, rgba(41, 213, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #070416 0%, #120a2a 100%);
  color: var(--ink);
  line-height: 1.5;
}

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

[id] {
  scroll-margin-top: 84px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(7, 4, 22, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 156px;
  height: 36px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 26px);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 104px clamp(18px, 6vw, 88px) 58px;
}

.hero-media,
.hero-overlay,
.mesh-layer {
  position: absolute;
  inset: 0;
}

.hero picture {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) brightness(0.62) hue-rotate(222deg);
  transform: scale(1.03);
  animation: slowDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 4, 22, 0.99) 0%, rgba(7, 4, 22, 0.88) 45%, rgba(7, 4, 22, 0.32) 100%),
    linear-gradient(0deg, rgba(7, 4, 22, 0.96) 0%, rgba(7, 4, 22, 0.04) 58%);
}

.mesh-layer {
  z-index: 1;
  opacity: 0.5;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(41, 213, 255, 0.28) 42.2%, transparent 42.6% 100%),
    linear-gradient(24deg, transparent 0 62%, rgba(155, 92, 255, 0.28) 62.2%, transparent 62.7% 100%),
    linear-gradient(154deg, transparent 0 72%, rgba(108, 92, 255, 0.24) 72.2%, transparent 72.7% 100%),
    repeating-linear-gradient(90deg, rgba(41, 213, 255, 0.055) 0 1px, transparent 1px 90px);
  background-size: 160% 160%, 130% 130%, 100% 100%;
  animation: meshShift 13s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(880px, 100%);
}

.system-tag {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 34px;
  padding: 5px 10px 6px;
  border: 1px solid rgba(100, 246, 223, 0.62);
  border-radius: 4px;
  background: rgba(100, 246, 223, 0.09);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(100, 246, 223, 0.1);
}

.eyebrow,
.section-kicker,
.plan-label {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 960px;
  font-size: clamp(36px, 5.8vw, 74px);
  font-weight: 430;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 23px;
  font-weight: 620;
  line-height: 1.15;
}

.hero-copy {
  margin-bottom: 30px;
  max-width: 700px;
  color: rgba(244, 242, 236, 0.76);
  font-size: clamp(18px, 1.9vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  cursor: pointer;
  font: inherit;
  font-weight: 720;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, rgba(41, 213, 255, 0.18), rgba(108, 92, 255, 0.14));
  border-color: rgba(100, 246, 223, 0.58);
  color: var(--teal);
  box-shadow: 0 0 32px rgba(100, 246, 223, 0.13);
}

.button.secondary {
  background: rgba(255, 209, 102, 0.065);
  border-color: rgba(255, 209, 102, 0.34);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(251, 247, 242, 0.34);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: clamp(42px, 7vw, 86px);
  color: rgba(244, 242, 236, 0.58);
}

.signal-row span {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}

.signal-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--teal);
  transform: rotate(45deg);
}

.intro,
.solution,
.case-study,
.about,
.method,
.plans,
.trust,
.fit,
.contact {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 6vw, 88px);
  content-visibility: auto;
  contain-intrinsic-size: 1px 820px;
}

.intro,
.fit,
.contact,
.case-study {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
}

.intro {
  background: var(--light);
  color: var(--ink);
  border-top: 1px solid rgba(100, 246, 223, 0.16);
  border-bottom: 1px solid rgba(100, 246, 223, 0.16);
}

.intro .section-kicker {
  color: var(--champagne);
}

.intro p:last-child,
.fit-list,
.contact p {
  color: var(--muted);
  font-size: clamp(18px, 1.9vw, 22px);
}

.section-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 850;
}

.text-link::after {
  content: "→";
  line-height: 1;
}

.text-link:hover {
  color: #bafff3;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
  display: grid;
  gap: 4px;
}

.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.signal-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(100, 246, 223, 0.14);
  border: 1px solid rgba(100, 246, 223, 0.18);
}

.signal-grid article,
.plan-grid article {
  min-height: 312px;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(100, 246, 223, 0.062), rgba(108, 92, 255, 0.022)),
    #071616;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.signal-grid article:hover,
.plan-grid article:hover,
.timeline li:hover,
.metric-list div:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(180deg, rgba(100, 246, 223, 0.095), rgba(108, 92, 255, 0.03)),
    #0a1d1d;
}

.signal-grid span {
  display: block;
  margin-bottom: 70px;
  color: var(--teal);
  font-weight: 850;
}

.signal-grid p,
.timeline p,
.plans p,
.plans li,
.case-study p,
.metric-list dd {
  color: var(--muted);
}

.case-study {
  align-items: start;
  background:
    radial-gradient(circle at 88% 0%, rgba(108, 92, 255, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(100, 246, 223, 0.09), transparent 42%),
    #071616;
  border-top: 1px solid rgba(100, 246, 223, 0.18);
  border-bottom: 1px solid rgba(100, 246, 223, 0.18);
}

.case-study p {
  max-width: 640px;
  font-size: 18px;
}

.dashboard-section {
  align-items: center;
}

.dashboard-demo {
  position: relative;
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  width: 100%;
  min-width: 0;
  min-height: 430px;
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(100, 246, 223, 0.22);
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(100, 246, 223, 0.21), transparent 30%),
    radial-gradient(circle at 18% 92%, rgba(108, 92, 255, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(255, 209, 102, 0.09), transparent 34%),
    #061112;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.dashboard-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(100, 246, 223, 0.085) 1px, transparent 1px),
    linear-gradient(0deg, rgba(100, 246, 223, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
  pointer-events: none;
}

.dashboard-demo > * {
  position: relative;
  z-index: 1;
}

.dashboard-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(244, 242, 236, 0.12);
}

.dashboard-topline div {
  display: grid;
  gap: 4px;
}

.dashboard-topline span,
.dashboard-metrics span,
.pipeline-column span {
  color: rgba(244, 242, 236, 0.62);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dashboard-topline strong {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
}

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

.dashboard-metrics article,
.pipeline-column {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(244, 242, 236, 0.11);
  border-radius: 8px;
  background: rgba(244, 242, 236, 0.045);
}

.dashboard-metrics article {
  min-height: 118px;
  padding: 15px;
}

.dashboard-metrics strong {
  color: var(--teal);
  font-size: clamp(30px, 4.8vw, 48px);
  line-height: 0.95;
}

.dashboard-metrics small,
.pipeline-column small {
  color: rgba(244, 242, 236, 0.66);
  font-size: 13px;
  line-height: 1.25;
}

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

.pipeline-column {
  min-height: 132px;
  padding: 16px;
  animation: dashboardPulse 6s ease-in-out infinite;
}

.pipeline-column:nth-child(2) {
  animation-delay: 1.2s;
}

.pipeline-column:nth-child(3) {
  animation-delay: 2.4s;
}

.pipeline-column strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.12;
}

.pipeline-column.active {
  border-color: rgba(100, 246, 223, 0.42);
  background: rgba(100, 246, 223, 0.09);
}

.dashboard-activity {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 209, 102, 0.2);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.38);
  color: rgba(244, 242, 236, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.dashboard-activity div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dashboard-activity span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--champagne);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.5);
}

.about {
  background:
    radial-gradient(circle at 90% 12%, rgba(108, 92, 255, 0.11), transparent 28%),
    linear-gradient(135deg, rgba(255, 209, 102, 0.085), transparent 38%),
    linear-gradient(180deg, #071616, #061112);
  border-bottom: 1px solid rgba(100, 246, 223, 0.14);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.58fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.about-story,
.confidentiality,
.role-grid article {
  border: 1px solid rgba(100, 246, 223, 0.18);
  border-radius: 8px;
  background: rgba(243, 251, 248, 0.04);
}

.about-story {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
}

.about-story p,
.confidentiality p,
.role-grid p {
  color: var(--muted);
}

.about-story p {
  max-width: 900px;
  margin-bottom: 0;
  font-size: 18px;
}

.confidentiality {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 209, 102, 0.13), rgba(100, 246, 223, 0.04)),
    rgba(243, 251, 248, 0.04);
}

.confidentiality span,
.role-grid span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.confidentiality h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.02;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(100, 246, 223, 0.14);
  border: 1px solid rgba(100, 246, 223, 0.18);
}

.role-grid article {
  min-height: 260px;
  padding: 26px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(100, 246, 223, 0.05), rgba(243, 251, 248, 0.025)),
    #071616;
  transition: transform 220ms ease, background 220ms ease;
}

.role-grid article:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(180deg, rgba(100, 246, 223, 0.08), rgba(243, 251, 248, 0.03)),
    #0a1d1d;
}

.role-grid h3 {
  margin: 54px 0 12px;
  font-size: 22px;
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.metric-list div {
  padding: 24px;
  border: 1px solid rgba(100, 246, 223, 0.19);
  border-radius: 6px;
  background: rgba(243, 251, 248, 0.04);
}

.metric-list dt {
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 850;
  line-height: 1;
}

.metric-list dd {
  margin: 0;
}

.method,
.plans,
.trust {
  background: #071616;
  border-bottom: 1px solid rgba(100, 246, 223, 0.14);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  padding: 26px;
  border: 1px solid rgba(100, 246, 223, 0.18);
  border-radius: 6px;
  background: rgba(243, 251, 248, 0.04);
}

.timeline strong {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 21px;
}

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

.founder-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0 0 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 209, 102, 0.28);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 209, 102, 0.12), rgba(100, 246, 223, 0.035)),
    rgba(243, 251, 248, 0.035);
}

.founder-note strong {
  color: var(--champagne);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-note span {
  color: var(--muted);
}

.plan-grid article {
  min-height: 520px;
  display: grid;
  align-content: start;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(100, 246, 223, 0.052), rgba(243, 251, 248, 0.027)),
    #071616;
}

.plan-grid .featured-plan {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 209, 102, 0.12), rgba(100, 246, 223, 0.035)),
    #071616;
}

.plan-grid article:not(.featured-plan) .button.secondary {
  border-color: rgba(100, 246, 223, 0.28);
}

.plan-grid h3,
.plan-price {
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 52px);
}

.plan-price {
  display: grid;
  gap: 2px;
  margin: 0 0 8px;
  line-height: 1;
}

.plan-price span {
  color: var(--ink);
  font-weight: 620;
}

.plan-price small {
  color: var(--champagne);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-intro {
  max-width: 560px;
  color: rgba(244, 242, 236, 0.72);
  font-size: 17px;
}

.plan-grid ul,
.fit-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-grid .button {
  margin-top: 12px;
  width: fit-content;
}

.plan-grid li,
.fit-list li {
  position: relative;
  padding-left: 22px;
}

.plan-grid li::before,
.fit-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.fit {
  background: var(--light);
  color: var(--ink);
  border-top: 1px solid rgba(100, 246, 223, 0.16);
  border-bottom: 1px solid rgba(100, 246, 223, 0.16);
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 80px);
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.075), transparent 44%),
    #061112;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(100, 246, 223, 0.18);
  background: rgba(100, 246, 223, 0.14);
}

.trust-grid article {
  min-height: 190px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(100, 246, 223, 0.05), rgba(243, 251, 248, 0.025)),
    #071616;
}

.trust-grid strong {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 20px;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
}

.fit .section-kicker {
  color: var(--champagne);
}

.contact {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(100, 246, 223, 0.1), transparent 42%),
    #061112;
  color: var(--ink);
}

.contact .section-kicker {
  color: var(--champagne);
}

.contact-panel {
  display: grid;
  gap: 18px;
  justify-items: start;
  padding: 28px;
  border: 1px solid rgba(100, 246, 223, 0.24);
  border-radius: 6px;
  background: rgba(243, 251, 248, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.application-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

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

.application-eyebrow {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.application-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.application-fields label:nth-child(3),
.application-fields label:nth-child(4) {
  grid-column: 1 / -1;
}

.contact-panel label {
  display: grid;
  width: 100%;
  gap: 8px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-panel label span {
  color: rgba(244, 242, 236, 0.58);
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: none;
}

.call-option {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 12px !important;
  padding: 15px 16px;
  border: 1px solid rgba(100, 246, 223, 0.24);
  border-radius: 6px;
  background: rgba(100, 246, 223, 0.07);
  color: rgba(244, 242, 236, 0.84) !important;
  cursor: pointer;
  font-size: 14px !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  line-height: 1.35;
  text-transform: none !important;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.call-option:hover,
.call-option:has(input:checked) {
  border-color: rgba(100, 246, 223, 0.5);
  background: rgba(100, 246, 223, 0.11);
  box-shadow: 0 18px 42px rgba(100, 246, 223, 0.08);
}

.call-step[hidden],
.call-option[hidden],
.button[hidden] {
  display: none !important;
}

.call-option input {
  flex: 0 0 auto;
  width: 18px !important;
  height: 18px;
  accent-color: var(--teal);
}

.call-step {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 209, 102, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.075), rgba(100, 246, 223, 0.045)),
    rgba(5, 6, 7, 0.24);
}

.call-step strong {
  color: var(--ink);
  font-size: 18px;
}

.call-step p {
  margin: 0;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  border: 1px solid rgba(100, 246, 223, 0.2);
  border-radius: 5px;
  background: rgba(5, 6, 7, 0.62);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  padding: 12px 13px;
  resize: vertical;
}

.form-sink {
  display: none;
}

.contact-panel input:focus,
.contact-panel textarea:focus {
  outline: 1px solid rgba(100, 246, 223, 0.6);
  border-color: rgba(100, 246, 223, 0.52);
}

.contact-panel p {
  margin-bottom: 0;
  font-size: 16px;
  color: var(--muted);
}

.direct-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 6vw, 88px);
  border-top: 1px solid rgba(100, 246, 223, 0.16);
  background:
    radial-gradient(circle at 90% 0%, rgba(108, 92, 255, 0.12), transparent 30%),
    #070416;
}

.direct-contact h2 {
  margin-bottom: 0;
}

.direct-contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(100, 246, 223, 0.2);
  background: rgba(100, 246, 223, 0.16);
}

.direct-contact-links a {
  display: grid;
  gap: 12px;
  min-height: 142px;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(100, 246, 223, 0.06), rgba(108, 92, 255, 0.035)),
    #0b061c;
  transition: transform 180ms ease, background 180ms ease;
}

.direct-contact-links a:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(100, 246, 223, 0.1), rgba(108, 92, 255, 0.05)),
    #120a2a;
}

.direct-contact-links span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direct-contact-links strong {
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 6vw, 88px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  display: inline-flex;
  width: 150px;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes slowDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.4%, 1%, 0);
  }
}

@keyframes meshShift {
  from {
    background-position: 0% 0%, 0% 0%, 0 0;
  }
  to {
    background-position: 80% 40%, 20% 70%, 24px 0;
  }
}

@keyframes dashboardPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: none;
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(100, 246, 223, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

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

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
  }

  .intro,
  .fit,
  .trust,
  .contact,
  .direct-contact,
  .case-study {
    grid-template-columns: 1fr;
  }

  .signal-grid,
  .timeline,
  .plan-grid,
  .metric-list,
  .about-layout,
  .role-grid,
  .trust-grid,
  .founder-note {
    grid-template-columns: 1fr;
  }

  .signal-grid article,
  .plan-grid article {
    min-height: auto;
  }

  .signal-grid span {
    margin-bottom: 38px;
  }

  .dashboard-demo {
    min-height: auto;
  }

  .dashboard-metrics,
  .dashboard-board,
  .direct-contact-links {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
  }

  .system-tag {
    margin-bottom: 24px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .signal-row {
    margin-top: 28px;
    gap: 10px 14px;
  }

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

  .application-fields {
    grid-template-columns: 1fr;
  }

  .dashboard-topline {
    display: grid;
  }

  .dashboard-demo {
    padding: 16px;
  }

  .dashboard-metrics article,
  .pipeline-column {
    min-height: auto;
  }
}
