:root {
  color-scheme: light;
  --ink: #162124;
  --muted: #627174;
  --line: #dbe4e4;
  --paper: #f7faf9;
  --white: #ffffff;
  --teal: #00b7c8;
  --teal-dark: #087781;
  --green: #527a42;
  --amber: #f0b33c;
  --plum: #6f5177;
  --shadow: 0 18px 50px rgba(22, 33, 36, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.is-hidden {
  display: none !important;
}

body:has(#portal:target) [data-access-screen] {
  display: none !important;
}

body:has(#portal:target) [data-portal] {
  display: block !important;
}

.access-screen {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  background: var(--white);
}

.access-media {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #111;
}

.access-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04)),
    linear-gradient(180deg, rgba(0, 183, 200, 0.16), rgba(240, 179, 60, 0.14));
}

.access-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-panel {
  align-self: center;
  width: min(100%, 560px);
  padding: clamp(32px, 6vw, 76px);
}

.brand-mark {
  width: 190px;
  height: auto;
  margin-bottom: 44px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 4.7vw, 5.25rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.access-panel h1 {
  font-size: clamp(2.4rem, 4vw, 4.7rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.3vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.lede,
.hero-copy p,
.section-heading p,
.story-panel > p,
.product-copy > p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.access-form {
  margin-top: 36px;
}

.access-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.access-row {
  display: flex;
  gap: 10px;
}

.access-row input {
  min-width: 0;
  flex: 1;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--ink);
  background: #fbfdfd;
  outline: none;
}

.access-row input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 183, 200, 0.16);
}

.access-row button,
.primary-button,
.secondary-button,
.ghost-button,
.material-card a {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.access-row button,
.primary-button {
  color: #061b1d;
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(0, 183, 200, 0.24);
}

.access-row button:hover,
.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.material-card a:hover {
  transform: translateY(-1px);
}

.secondary-button,
.ghost-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.form-note {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-note.error {
  color: #a43737;
}

.fine-print {
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(219, 228, 228, 0.86);
  background: rgba(247, 250, 249, 0.88);
  backdrop-filter: blur(18px);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: var(--white);
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 19;
  display: flex;
  flex-direction: column;
  background: rgba(247, 250, 249, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 12px clamp(20px, 4vw, 56px) 20px;
  gap: 4px;
}

.mobile-nav a {
  padding: 12px 0;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.identity img {
  width: 128px;
  max-height: 38px;
  object-fit: contain;
}

.identity span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.topnav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
}

.topnav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

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

.ghost-button {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  min-height: auto;
  padding: clamp(34px, 4.5vw, 64px) clamp(20px, 5vw, 76px) clamp(24px, 3vw, 38px);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(74%, 980px);
  background:
    linear-gradient(90deg, rgba(247, 250, 249, 0.06), rgba(247, 250, 249, 0.22) 42%, rgba(247, 250, 249, 0.95) 82%),
    linear-gradient(180deg, rgba(0, 183, 200, 0), rgba(240, 179, 60, 0.03)),
    url("assets/hero-running-dog.jpeg") center 42% / cover no-repeat;
  opacity: 1;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 250, 249, 0.62), rgba(247, 250, 249, 0.28) 34%, rgba(247, 250, 249, 0.96) 62%);
  pointer-events: none;
}

.hero-section > * {
  position: relative;
  z-index: 2;
}

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

.hero-subhead {
  max-width: 720px;
  color: var(--ink) !important;
  font-weight: 850;
}

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

.hero-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.1)),
    #eaf3f2;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -16% -20% 16%;
  height: 58%;
  background: linear-gradient(135deg, rgba(0, 183, 200, 0.2), rgba(240, 179, 60, 0.34));
  transform: skewY(-8deg);
}

.hero-visual > img {
  position: relative;
  z-index: 1;
  width: min(82%, 460px);
  margin: 0 auto;
  filter: drop-shadow(0 26px 34px rgba(22, 33, 36, 0.2));
}

.signal-strip {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(22, 33, 36, 0.1);
}

.signal-strip span {
  min-height: 104px;
  padding: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  line-height: 1.35;
}

.signal-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.section {
  padding: clamp(54px, 7vw, 104px) clamp(20px, 5vw, 76px);
}

.snapshot-section {
  padding-top: clamp(36px, 4.5vw, 62px);
}

.section.narrow {
  max-width: 1280px;
  margin: 0 auto;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 32px;
}

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

.metric-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.metric-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.metric-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 3vw, 4rem);
  line-height: 0.95;
}

.metric-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.accent-teal {
  border-top: 5px solid var(--teal);
}

.accent-amber {
  border-top: 5px solid var(--amber);
}

.accent-green {
  border-top: 5px solid var(--green);
}

.accent-ink {
  border-top: 5px solid var(--plum);
}

.split-section {
  background: #eef5f4;
}

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

.material-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 22px;
  border-radius: 999px;
  padding: 4px 10px;
  color: #395054;
  background: #edf2f2;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.material-card.ready .status {
  color: #075f68;
  background: #d9f6f7;
}

.material-card p {
  color: var(--muted);
  line-height: 1.55;
}

.material-card a {
  margin-top: auto;
  color: #062124;
  background: #e5f8f9;
}

.traction-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.story-panel {
  max-width: 720px;
}

.quote {
  margin-top: 30px;
  border-left: 5px solid var(--amber);
  padding: 6px 0 4px 20px;
}

.quote p {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.55;
}

.quote span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.policy-callout {
  margin-top: 24px;
  border: 1px solid rgba(0, 183, 200, 0.28);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(0, 183, 200, 0.05);
}

.policy-tag {
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 3px 10px;
  color: var(--teal-dark);
  background: rgba(0, 183, 200, 0.14);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.policy-callout p {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.6;
}

.policy-callout a {
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.policy-callout a:hover {
  text-decoration: underline;
}

.evidence-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 16px;
  align-items: stretch;
}

.evidence-stack img,
.evidence-card {
  min-height: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.evidence-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--white);
}

.evidence-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(22, 33, 36, 0.2), rgba(22, 33, 36, 0.82)),
    url("assets/vet-dog.jpeg") center / cover;
}

.evidence-card p {
  margin-bottom: 0;
  line-height: 1.55;
}

.roadmap-section {
  background: var(--white);
}

.value-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.65;
}

.valuation-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.valuation-anchor,
.inflection-track {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(22, 33, 36, 0.06);
}

.valuation-anchor {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

.valuation-anchor span {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.valuation-anchor strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.95;
}

.valuation-anchor p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.valuation-anchor.current {
  border-top: 5px solid var(--teal);
}

.valuation-anchor.target {
  border-top: 5px solid var(--green);
  background: #f4faf3;
}

.inflection-track {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 26px 18px 22px;
  list-style: none;
  overflow: hidden;
}

.inflection-track::before {
  content: "";
  position: absolute;
  top: 47px;
  right: 52px;
  left: 52px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--green));
}

.inflection-track::after {
  content: "";
  position: absolute;
  top: 39px;
  right: 42px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--green);
}

.inflection-track li {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 0 14px;
}

.step-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 44px;
  border-radius: 50%;
  color: #062124;
  background: var(--amber);
  font-weight: 900;
  box-shadow:
    0 0 0 8px var(--white),
    0 8px 18px rgba(22, 33, 36, 0.13);
}

.inflection-track h3 {
  margin-bottom: 10px;
}

.inflection-track p,
.inflection-track small {
  color: var(--muted);
  line-height: 1.52;
}

.inflection-track p {
  margin-bottom: 16px;
}

.inflection-track small {
  display: block;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: #3f6f61;
  font-size: 0.83rem;
  font-weight: 800;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  background: #fbfcfb;
}

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

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-points span {
  border: 1px solid rgba(0, 183, 200, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--teal-dark);
  background: #e8fbfb;
  font-weight: 850;
}

.product-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-images img {
  width: 100%;
  height: 245px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(22, 33, 36, 0.1);
}

.product-images img:first-child {
  grid-column: 1 / -1;
  height: 290px;
}

.team-heading {
  display: flex;
  max-width: none;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.team-heading > div:first-child {
  max-width: 960px;
}

.carousel-controls {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 8px;
}

.carousel-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  border-color: rgba(0, 183, 200, 0.72);
  box-shadow: 0 12px 28px rgba(22, 33, 36, 0.1);
  transform: translateY(-1px);
}

.carousel-button:focus-visible {
  outline: 4px solid rgba(0, 183, 200, 0.18);
  outline-offset: 2px;
}

.team-carousel {
  display: grid;
  gap: 18px;
}

.team-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.team-card {
  display: grid;
  flex: 0 0 clamp(280px, 31vw, 380px);
  scroll-snap-align: start;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 0 22px;
  overflow: hidden;
  color: inherit;
  text-align: left;
  background: var(--white);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.team-card:hover,
.team-card:focus-visible {
  border-color: rgba(0, 183, 200, 0.72);
  box-shadow: 0 16px 42px rgba(22, 33, 36, 0.12);
  transform: translateY(-2px);
}

.team-card:focus-visible {
  outline: 4px solid rgba(0, 183, 200, 0.18);
  outline-offset: 2px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  object-position: center top;
  background: #dceaea;
}

.team-card span,
.team-card h3,
.team-card p {
  margin-right: 22px;
  margin-left: 22px;
}

.team-card span {
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 10px;
}

.team-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.team-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.team-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #b8cccc;
  cursor: pointer;
}

.team-dots button.is-active {
  background: var(--teal-dark);
}

.team-dots button:focus-visible {
  outline: 4px solid rgba(0, 183, 200, 0.18);
  outline-offset: 3px;
}

.profile-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 48px);
}

.profile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 28, 31, 0.58);
  backdrop-filter: blur(12px);
}

.profile-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  width: min(100%, 860px);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.profile-dialog > img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  background: #dceaea;
}

.profile-content {
  align-self: center;
  padding: clamp(28px, 4vw, 48px);
}

.profile-content h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.profile-content p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.profile-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  cursor: pointer;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(420px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #ebf4f2;
}

.contact-copy {
  max-width: 650px;
}

.contact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.65;
}

.email-card {
  display: grid;
  gap: 8px;
  width: min(100%, 380px);
  margin-top: 28px;
  border: 1px solid rgba(0, 183, 200, 0.28);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.email-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.email-card strong {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
}

.email-card a {
  color: var(--teal-dark);
  font-size: 1.12rem;
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(22, 33, 36, 0.07);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdfd;
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 183, 200, 0.16);
}

.contact-form button {
  justify-self: start;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer img {
  width: 180px;
}

.footer p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: right;
}

@media (max-width: 1120px) {
  .access-screen,
  .hero-section,
  .traction-section,
  .product-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .access-media {
    min-height: 42vh;
  }

  .access-panel {
    width: 100%;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

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

  .valuation-bridge,
  .inflection-track {
    grid-template-columns: 1fr;
  }

  .valuation-anchor {
    min-height: auto;
  }

  .inflection-track {
    gap: 18px;
    padding: 24px;
  }

  .inflection-track::before {
    top: 48px;
    bottom: 48px;
    left: 47px;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, var(--teal), var(--amber), var(--green));
  }

  .inflection-track::after {
    top: auto;
    bottom: 38px;
    left: 39px;
    border-top: 16px solid var(--green);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 0;
  }

  .inflection-track li {
    min-height: auto;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 18px;
    padding: 0;
  }

  .step-marker {
    grid-row: 1 / 5;
    margin-bottom: 0;
  }

  .inflection-track small {
    margin-top: 0;
  }

  .profile-dialog {
    grid-template-columns: 1fr;
    width: min(100%, 680px);
  }

  .profile-dialog > img {
    height: 320px;
    min-height: 0;
  }

  .team-card {
    flex-basis: min(360px, 42vw);
  }
}

@media (max-width: 920px) {
  .identity img {
    width: 108px;
  }

  .identity span {
    display: none;
  }

  .topnav {
    gap: 12px;
  }

  .topnav a {
    font-size: 0.82rem;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.4rem, 14vw, 4.1rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .identity span,
  .topnav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-visual {
    min-height: 560px;
  }

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

  .signal-strip span {
    min-height: 78px;
  }

  .metric-grid,
  .field-pair,
  .evidence-stack,
  .product-images {
    grid-template-columns: 1fr;
  }

  .team-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .carousel-controls {
    margin-bottom: 0;
  }

  .team-card {
    flex-basis: min(86vw, 360px);
  }

  .access-row {
    flex-direction: column;
  }

  .access-row button {
    width: 100%;
  }

  .product-images img,
  .product-images img:first-child {
    height: 250px;
  }

  .profile-modal {
    padding: 14px;
  }

  .profile-dialog > img {
    height: 260px;
  }

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

  .footer p {
    text-align: left;
  }
}
