﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Sora:wght@500;700;800&display=swap");

:root {
  --bg: #0a1310;
  --surface: #121f1a;
  --ink: #e5f4ea;
  --ink-soft: #b3cbbd;
  --teal: #67ba7f;
  --teal-deep: #8fd6a4;
  --coral: #67ba7f;
  --coral-deep: #3e8d58;
  --gold: #234232;
  --stroke: rgba(185, 226, 198, 0.2);
  --shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
  --radius-lg: 22px;
  --radius-md: 14px;
  --max: 1120px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(
      circle at 14% 8%,
      rgba(103, 186, 127, 0.24),
      transparent 34%
    ),
    radial-gradient(circle at 86% 6%, rgba(62, 141, 88, 0.2), transparent 30%),
    radial-gradient(
      circle at 50% 94%,
      rgba(198, 226, 202, 0.34),
      transparent 42%
    ),
    var(--bg);
  min-height: 100vh;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  z-index: -1;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.18) 0,
    rgba(255, 255, 255, 0.18) 1px,
    transparent 1px,
    transparent 3px
  );
}

.skip-link {
  position: absolute;
  left: 0.8rem;
  top: -100%;
  z-index: 100;
  background: #1f5f38;
  color: #ffffff;
  padding: 0.55rem 0.8rem;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 0.8rem;
}

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

.container {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 0.7rem;
}

.nav-wrap {
  background: rgba(18, 31, 26, 0.88);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 1rem;
  backdrop-filter: blur(8px);
}

.brand {
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(62, 141, 88, 0.12);
  outline: none;
}

.top-contact-bar {
  margin-top: 0.6rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.top-contact-bar a {
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.36rem 0.68rem;
  border: 1px solid var(--stroke);
  background: rgba(18, 31, 26, 0.95);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.72rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-small {
  font-size: 0.8rem;
  padding: 0.55rem 0.9rem;
}

.btn-solid {
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: white;
  box-shadow: 0 8px 18px rgba(47, 116, 71, 0.28);
}

.btn-solid:hover,
.btn-solid:focus-visible {
  box-shadow: 0 12px 22px rgba(47, 116, 71, 0.34);
}

.btn-outline {
  border-color: var(--stroke);
  background: rgba(18, 31, 26, 0.82);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(28, 47, 39, 0.95);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--teal-deep);
  margin: 0 0 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.12;
  margin: 0 0 1rem;
}

h1 {
  font-size: 3.2rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.hero {
  padding-top: 2.7rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: start;
}

.hero-copy {
  background: rgba(18, 31, 26, 0.95);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 3.6vw, 2.4rem);
}

.hero-copy .lead {
  max-width: 65ch;
}

.signature-sound {
  margin: 0.9rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(47, 116, 71, 0.25);
  background: linear-gradient(
    130deg,
    rgba(62, 141, 88, 0.38),
    rgba(16, 36, 27, 0.7)
  );
  color: var(--ink);
  font-weight: 700;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin: 1.5rem 0 1.2rem;
}

.badge-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.badge-row li {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(
    120deg,
    rgba(62, 141, 88, 0.5),
    rgba(16, 36, 27, 0.85)
  );
  border: 1px solid rgba(47, 116, 71, 0.16);
}

.hero-contact-highlight {
  margin-top: 1rem;
  border-top: 1px dashed rgba(47, 116, 71, 0.28);
  padding-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.hero-contact-highlight p {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.hero-stack {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.headshot-card {
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  overflow: hidden;
  background: #0f1c16;
  box-shadow: 0 10px 24px rgba(23, 51, 42, 0.12);
  background-color: #0f1c16;
}

.headshot-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  background: #0f1c16;
  transform: scale(1.06);
  transform-origin: center;
}

.headshot-card figcaption {
  display: none;
}

.hero-panel {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(62, 141, 88, 0.96),
    rgba(28, 92, 55, 0.96)
  );
  border-radius: var(--radius-lg);
  color: #f3fff5;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 34px rgba(23, 51, 42, 0.24);
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -18% -34% auto;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(198, 226, 202, 0.9),
    rgba(198, 226, 202, 0)
  );
}

.panel-kicker {
  color: rgba(242, 251, 255, 0.86);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-panel h2,
.hero-panel p,
.hero-panel span {
  color: #f3fff5;
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0 1rem;
}

.panel-tags span {
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0.33rem 0.68rem;
  background: rgba(255, 255, 255, 0.08);
}

.panel-note {
  font-size: 0.86rem;
  margin: 0;
}

.section-title {
  max-width: 62ch;
  margin-bottom: 1.4rem;
}

.services {
  padding-top: 2.4rem;
}

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

.service-card {
  height: 100%;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  min-height: 165px;
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  border-left: 4px solid rgba(79, 157, 104, 0.45);
}

.service-card p {
  margin-bottom: 0;
}

.demos {
  padding-top: 2.8rem;
}

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

.demo-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  background: #17352b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 22px rgba(23, 51, 42, 0.3);
  overflow: hidden;
}

.demo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(103, 186, 127, 0.12),
    rgba(198, 226, 202, 0.08)
  );
  pointer-events: none;
}

.demo-card h3,
.demo-card p {
  color: #eefaf0;
  position: relative;
}

.demo-slot {
  position: relative;
  margin-top: 0.8rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #eefaf0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.cta-band {
  padding-top: 2.4rem;
  padding-bottom: 2rem;
}

.cta-band-inner {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47, 116, 71, 0.34);
  background: linear-gradient(
    130deg,
    rgba(39, 107, 63, 0.96),
    rgba(23, 70, 42, 0.96)
  );
  box-shadow: 0 16px 30px rgba(23, 51, 42, 0.24);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.cta-band-inner h2,
.cta-band-inner p {
  color: #f3fff5;
}

.process {
  padding-top: 2.6rem;
}

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

.process-card {
  height: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 116, 71, 0.28);
  background: linear-gradient(
    160deg,
    rgba(31, 84, 50, 0.96),
    rgba(19, 60, 36, 0.96)
  );
  box-shadow: 0 12px 24px rgba(23, 51, 42, 0.24);
  padding: 1.4rem 1.2rem;
  text-align: center;
}

.process-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: #ffffff;
  color: #1f5f38;
}

.process-card h3 {
  margin: 0 0 0.7rem;
  color: #f3fff5;
}

.process-card p {
  margin: 0;
  color: rgba(243, 255, 245, 0.92);
}

.proof {
  padding-top: 2.8rem;
  padding-bottom: 2.2rem;
}

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

.proof-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  background: rgba(18, 31, 26, 0.94);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  padding: 1.1rem;
}

.contact {
  padding-top: 2.8rem;
  padding-bottom: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
}

.contact-copy {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  background: rgba(18, 31, 26, 0.94);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  padding: 1.2rem;
}

.contact-highlight-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
}

.contact-highlight-list a {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  font-weight: 800;
  color: var(--ink);
  border: 1px solid rgba(47, 116, 71, 0.2);
  background: linear-gradient(
    135deg,
    rgba(198, 226, 202, 0.55),
    rgba(103, 186, 127, 0.2)
  );
}

.contact-highlight-list a.primary-contact {
  background: linear-gradient(
    135deg,
    rgba(62, 141, 88, 0.95),
    rgba(47, 116, 71, 0.95)
  );
  color: #ffffff;
}

.contact-note {
  margin: 0;
  font-size: 0.9rem;
}

.text-link {
  color: var(--teal-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  background: rgba(18, 31, 26, 0.98);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  border: 1px solid rgba(47, 116, 71, 0.28);
  border-radius: 0.75rem;
  padding: 0.7rem 0.82rem;
  font: inherit;
  color: var(--ink);
  background: #0f1c16;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(79, 157, 104, 0.35);
  border-color: rgba(79, 157, 104, 0.55);
}

#form-status {
  min-height: 1.3rem;
  margin: 0;
  font-size: 0.88rem;
  color: var(--teal-deep);
  font-weight: 700;
}

.site-footer {
  padding: 1.3rem 0 2.2rem;
}

.footer-wrap {
  border-top: 1px solid rgba(143, 214, 164, 0.26);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.footer-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-wrap a {
  font-weight: 700;
  color: var(--teal-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 0.75s ease forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1050px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    padding-top: 0;
  }

  .nav-wrap {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    width: 100%;
  }

  .brand {
    font-size: 0.8rem;
  }

  .nav-links {
    gap: 0.2rem;
  }

  .nav-links a {
    font-size: 0.76rem;
    padding: 0.35rem 0.52rem;
  }

  .top-contact-bar {
    justify-content: flex-start;
  }

  .field-row,
  .service-grid,
  .demo-grid,
  .process-card-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.2rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
  }
}
