:root {
  color-scheme: dark;
  --bg: #07090c;
  --surface: rgba(12, 16, 22, 0.82);
  --surface-strong: #111820;
  --text: #f5f7fb;
  --muted: #a9b3c2;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #58d5e8;
  --amber: #f2b75f;
  --green: #6de6a7;
  --shadow: 0 26px 100px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(88, 213, 232, 0.18), transparent 34rem),
    radial-gradient(circle at 12% 34%, rgba(242, 183, 95, 0.09), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

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

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

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

.site-header,
.site-footer,
.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 0;
}

.brand,
.hero-meta,
.hero-actions,
.site-footer,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(88, 213, 232, 0.55);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(88, 213, 232, 0.28), rgba(242, 183, 95, 0.16));
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.brand-text {
  font-size: 1rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(100svh - 90px);
  place-items: center;
  padding: 84px 0 112px;
  text-align: center;
}

.hero::before,
.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  content: "";
}

.hero::before {
  z-index: -2;
  background: url("assets/automation-operations.png") center / cover no-repeat;
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.78) 0%, rgba(7, 9, 12, 0.72) 45%, rgba(7, 9, 12, 0.97) 100%),
    radial-gradient(circle at 50% 42%, rgba(7, 9, 12, 0.18), rgba(7, 9, 12, 0.82) 72%);
}

.hero-copy {
  display: grid;
  justify-items: center;
  width: min(940px, 100%);
}

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

h1 {
  max-width: 15ch;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 4.5vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-highlight {
  display: inline-block;
  color: var(--cyan);
}

h2 {
  max-width: 820px;
  margin: 0 auto 18px;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-align: center;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.hero-lede,
.section-lede,
.about p,
.waitlist-copy p {
  max-width: 690px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-lede {
  margin-bottom: 26px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-meta {
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 34px;
  margin-bottom: 32px;
}

.hero-meta div {
  display: grid;
  gap: 2px;
  min-width: 130px;
}

.hero-meta strong {
  font-size: 1.45rem;
}

.hero-meta span,
.step-tagline,
.process-card li,
.testimonial-card span,
.testimonial-card small,
.form-note {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--text);
  color: #07090c;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.process,
.testimonials,
.about,
.waitlist {
  padding: 96px 0;
}

.process {
  padding-bottom: 48px;
}

.testimonials {
  padding-top: 128px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.section-lede {
  margin-bottom: 42px;
  text-align: center;
}

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

.process-card,
.testimonial-card,
.waitlist-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.18);
}

.process-card {
  padding: 26px;
}

.step-number {
  display: block;
  margin-bottom: 42px;
  color: var(--amber);
  font-weight: 900;
}

.step-tagline {
  margin-bottom: 18px;
  font-weight: 700;
}

.process-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 18px;
}

.process-card li::marker {
  color: var(--cyan);
}

.process-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 32px;
  padding-bottom: 32px;
}

.process-cta p {
  margin: 0;
  text-align: center;
  font-size: clamp(1.12rem, 2.4vw, 1.92rem);
  font-weight: 400;
  line-height: 1.35;
}

.testimonial-card {
  display: grid;
  min-height: 300px;
  align-content: space-between;
  margin: 0;
  padding: 26px;
}

.testimonial-card blockquote {
  position: relative;
  margin-bottom: 28px;
  color: var(--text);
  font-size: 1.03rem;
}

.testimonial-card blockquote::before,
.testimonial-card blockquote::after {
  color: rgba(88, 213, 232, 0.5);
  font-size: 2.6rem;
  line-height: 0;
}

.testimonial-card blockquote::before {
  content: "\201C";
}

.testimonial-card blockquote::after {
  content: "\201D";
}

.testimonial-card figcaption {
  display: grid;
  gap: 3px;
}

.testimonial-card.featured {
  background: linear-gradient(180deg, rgba(88, 213, 232, 0.12), rgba(13, 17, 23, 0.86));
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.about .eyebrow,
.about h2 {
  text-align: left;
}

.about h2 {
  margin-inline: 0;
}

.about h3 {
  font-size: 1.5rem;
}

.about p {
  margin-inline: 0;
}

.about-media {
  width: min(100%, 380px);
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0f13;
  box-shadow: var(--shadow);
}

.about-media img {
  display: block;
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.65fr);
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.waitlist .eyebrow,
.waitlist h2,
.waitlist-copy p {
  margin-inline: 0;
  text-align: left;
}

.waitlist-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 750;
}

label span {
  font-size: 0.9rem;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 14px;
  background: #080b10;
  color: var(--text);
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--cyan);
}

input:focus,
select:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(88, 213, 232, 0.16);
}

::placeholder {
  color: #667281;
}

.consent-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 500;
}

.consent-row span {
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
}

.form-note.is-success {
  color: var(--green);
}

.form-note.is-error {
  color: #ff8f8f;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer nav {
  gap: 18px;
}

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


body.contact-page {
  color-scheme: dark;
  background:
    radial-gradient(circle at 78% 12%, rgba(88, 213, 232, 0.18), transparent 34rem),
    radial-gradient(circle at 12% 34%, rgba(242, 183, 95, 0.09), transparent 30rem),
    var(--bg);
  color: var(--text);
}

body.contact-page::before {
  display: block;
}

.contact-page .site-header,
.contact-page .site-footer,
.contact-page .section-shell {
  width: min(1120px, calc(100% - 32px));
}

.contact-page .contact-header {
  position: relative;
  justify-content: flex-end;
  padding: 18px 0;
}

.contact-page .contact-header::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: var(--line);
  content: "";
}

.contact-page .brand {
  color: var(--text);
}

.contact-page .brand-mark {
  border-color: rgba(88, 213, 232, 0.55);
  background: linear-gradient(135deg, rgba(88, 213, 232, 0.28), rgba(242, 183, 95, 0.16));
  color: var(--text);
}

.back-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-weight: 700;
}

.back-link:hover {
  border-color: rgba(88, 213, 232, 0.45);
}

.contact-intro {
  padding: 42px 0 28px;
  text-align: center;
}

.contact-intro h1 {
  max-width: none;
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
}

.contact-intro p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.contact-page .contact-form-shell {
  width: min(640px, calc(100% - 32px));
  padding: 10px 0 88px;
}

.contact-notice {
  border: 1px solid rgba(88, 213, 232, 0.55);
  border-radius: 8px;
  padding: 18px 28px;
  background: rgba(88, 213, 232, 0.1);
  color: var(--text);
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.contact-page .waitlist-panel.contact-form {
  display: grid;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: var(--surface);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.18);
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.contact-page label {
  color: var(--text);
  font-weight: 400;
}

.contact-page label span,
.checkbox-fieldset legend {
  font-size: 0.92rem;
}

.contact-page input,
.contact-page select,
.contact-page textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  padding: 0 14px;
  background: #080b10;
  color: var(--text);
}

.contact-page select {
  appearance: auto;
}

.contact-page textarea {
  min-height: 104px;
  padding-block: 12px;
  resize: vertical;
}

.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(88, 213, 232, 0.16);
}

.contact-page ::placeholder {
  color: #667281;
}

.checkbox-fieldset {
  display: grid;
  gap: 12px;
  min-width: 0;
  border: 0;
  margin: 0;
  padding: 0;
}

.checkbox-fieldset legend {
  margin-bottom: 2px;
  color: var(--text);
  font-weight: 400;
}

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

.option-card {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 400;
}

.option-card input[type="checkbox"] {
  width: 17px;
  min-height: 17px;
  flex: 0 0 auto;
  accent-color: var(--cyan);
}

.option-card span {
  font-size: 0.9rem;
}

.contact-submit {
  width: 100%;
  min-height: 52px;
  background: var(--text);
  color: #07090c;
  font-weight: 400;
}

.contact-submit:hover {
  background: #dce5ef;
}

.contact-page .form-note {
  color: var(--muted);
  text-align: center;
}

.contact-page .form-note.is-success {
  color: var(--green);
}

.contact-page .form-note.is-error {
  color: #ff8f8f;
}

.contact-footer {
  position: relative;
  flex-direction: column;
  justify-content: center;
  padding-top: 34px;
  color: var(--muted);
  text-align: center;
}

.contact-footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: var(--line);
  content: "";
}

.contact-footer nav {
  justify-content: center;
}

.contact-footer a:hover {
  color: var(--text);
}
@media (max-width: 900px) {
  .process-grid,
  .testimonial-grid,
  .about,
  .waitlist {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: 13ch;
  }

  .process-cta {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-media {
    justify-self: center;
  }
}

@media (max-width: 640px) {

  .contact-page .contact-header {
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
  }

  .contact-page .contact-intro {
    text-align: center;
  }

  .contact-page .contact-intro h1 {
    max-width: none;
  }

  .two-columns,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .waitlist-panel.contact-form {
    padding: 24px;
  }

  .contact-page .button,
  .contact-page .waitlist-panel .button {
    width: 100%;
  }

  .contact-page .contact-footer {
    align-items: center;
  }

  .contact-page .contact-footer nav {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    text-align: left;
  }

  .hero-copy {
    justify-items: start;
  }

  .hero-meta {
    justify-content: flex-start;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 9vw, 3rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
    text-align: left;
  }

  .eyebrow,
  .section-lede {
    text-align: left;
  }

  .button,
  .waitlist-panel .button {
    width: 100%;
  }

  .process-cta .button {
    width: auto;
  }

  .process,
  .testimonials,
  .about,
  .waitlist {
    padding: 68px 0;
  }

  .process {
    padding-bottom: 40px;
  }

  .testimonials {
    padding-top: 96px;
  }

  .about-media img {
    min-height: 300px;
  }

  .site-footer nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}