:root {
  color-scheme: dark;
  --bg: #080a0d;
  --surface: #10151b;
  --surface-soft: #151d25;
  --text: #f2f5f7;
  --muted: #a4b0ba;
  --quiet: #6f7c87;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #72d6c9;
  --accent-strong: #f0c15f;
  --shadow: rgba(0, 0, 0, 0.36);
  --max-width: 1120px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(114, 214, 201, 0.11), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(240, 193, 95, 0.08), transparent 28%),
    linear-gradient(180deg, #080a0d 0%, #0b0f13 52%, #080a0d 100%);
}

body.nav-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  background: rgba(8, 10, 13, 0.64);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled,
.legal-page .site-header {
  border-color: var(--line);
  background: rgba(8, 10, 13, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(114, 214, 201, 0.55);
  border-radius: 8px;
  color: var(--accent);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.8vw, 34px);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto 6px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 132px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 44px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
}

.track {
  position: absolute;
  width: 2px;
  height: 76vh;
  background: linear-gradient(180deg, transparent, rgba(114, 214, 201, 0.28), transparent);
  transform: rotate(36deg);
}

.track-one {
  left: 18%;
  top: 8%;
}

.track-two {
  left: 62%;
  top: -12%;
  background: linear-gradient(180deg, transparent, rgba(240, 193, 95, 0.22), transparent);
}

.track-three {
  right: 10%;
  bottom: -16%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.subtitle {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--accent-strong);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.25;
}

.intro {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 720;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #07100f;
  background: var(--accent);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.system-panel {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 29, 37, 0.82), rgba(12, 16, 20, 0.72));
  box-shadow: 0 22px 70px var(--shadow);
  overflow: hidden;
}

.panel-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.panel-row:last-of-type {
  border-bottom: 0;
}

.panel-row strong {
  color: var(--text);
  font-size: 1.15rem;
}

.signal-line {
  width: 100%;
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--accent), transparent 34%, var(--accent-strong), transparent 76%);
  animation: signal 4s ease-in-out infinite;
}

.section-heading {
  max-width: 680px;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.project-card {
  min-height: 320px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 27, 0.76);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.project-card:hover {
  border-color: rgba(114, 214, 201, 0.42);
  background: rgba(21, 29, 37, 0.88);
  transform: translateY(-4px);
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 60px;
  color: var(--quiet);
  font-size: 0.84rem;
}

.project-index {
  color: var(--accent);
  font-weight: 800;
}

.project-tag {
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.project-card p,
.about-copy,
.contact-copy p,
.contact-inner p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.about {
  background: rgba(255, 255, 255, 0.025);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 72px);
}

.about-copy {
  font-size: 1.04rem;
}

.drive-list {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.drive-list li {
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.contact-form-wrap {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 27, 0.76);
  box-shadow: 0 22px 70px var(--shadow);
}

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

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

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

.form-field label,
.checkbox-field {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(8, 10, 13, 0.72);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-field input:hover,
.form-field textarea:hover,
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(114, 214, 201, 0.5);
  background: rgba(8, 10, 13, 0.92);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.checkbox-field a {
  color: var(--accent);
}

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

.form-message {
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.form-message p {
  margin: 0;
}

.form-message.success {
  border-color: rgba(114, 214, 201, 0.5);
  color: var(--text);
}

.form-message.error {
  border-color: rgba(240, 193, 95, 0.55);
  color: var(--text);
}

.legal-main {
  min-height: calc(100svh - 96px);
  padding-top: calc(var(--header-height) + clamp(62px, 9vw, 112px));
}

.legal-content {
  max-width: 780px;
}

.legal-content h1 {
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.legal-content h2 {
  margin-top: 46px;
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.legal-content ul {
  padding-left: 1.1rem;
}

.todo-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.todo-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.todo-list strong {
  color: var(--text);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(120px, 0.5fr) minmax(220px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.92rem;
}

.footer-brand {
  color: var(--text);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
}

@keyframes signal {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-8px);
  }

  50% {
    opacity: 1;
    transform: translateX(8px);
  }
}

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

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(12, 16, 20, 0.97);
    box-shadow: 0 20px 70px var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 46px;
    padding: 10px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .system-panel {
    max-width: 520px;
  }

  .project-list {
    grid-template-columns: 1fr;
  }

  .drive-list {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .drive-list {
    grid-template-columns: 1fr;
  }

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

  .project-card {
    min-height: 280px;
  }

  .project-meta {
    margin-bottom: 44px;
  }
}

.project-page .site-header {
  border-color: var(--line);
  background: rgba(8, 10, 13, 0.88);
}

.project-main {
  min-height: calc(100svh - 96px);
  padding-top: calc(var(--header-height) + clamp(62px, 9vw, 112px));
}

.project-detail {
  max-width: 980px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-weight: 720;
}

.project-detail-hero {
  max-width: 820px;
  margin-bottom: clamp(42px, 7vw, 72px);
}

.project-detail-hero h1 {
  margin-bottom: 18px;
}

.project-lead {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(114, 214, 201, 0.42);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(114, 214, 201, 0.08);
  font-size: 0.86rem;
  font-weight: 760;
}

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

.detail-section {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 27, 0.76);
}

.detail-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.detail-section p,
.detail-section li {
  color: var(--muted);
}

.focus-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.project-link {
  margin-top: 22px;
}

@media (max-width: 860px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}
.auth-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-top: clamp(42px, 8vw, 92px);
  padding-bottom: clamp(42px, 8vw, 92px);
}

.auth-card {
  width: min(100%, 520px);
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 27, 0.84);
  box-shadow: 0 22px 70px var(--shadow);
}

.auth-brand {
  margin-bottom: 36px;
}

.auth-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.auth-card p {
  color: var(--muted);
}
.screenshots-section {
  margin-top: clamp(42px, 7vw, 72px);
}

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

.screenshot-placeholder {
  display: grid;
  place-items: center;
  min-height: 190px;
  aspect-ratio: 16 / 10;
  border: 1px dashed rgba(114, 214, 201, 0.36);
  border-radius: 8px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 42%),
    rgba(16, 21, 27, 0.76);
  font-weight: 720;
  text-align: center;
}

@media (max-width: 860px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
  }
}
.project-block {
  margin-top: clamp(42px, 7vw, 72px);
}

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

.mini-card {
  min-height: 190px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 27, 0.76);
}

.mini-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.mini-card p,
.status-card p {
  color: var(--muted);
}

.status-card .status-badge {
  margin-bottom: 18px;
}

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

@media (max-width: 640px) {
  .challenge-grid {
    grid-template-columns: 1fr;
  }
}
.about-subsection {
  grid-column: 2;
  margin-top: 10px;
}

.about-subsection h3 {
  margin-bottom: 16px;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.about-why {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.about-why p {
  color: var(--muted);
}

@media (max-width: 860px) {
  .about-subsection {
    grid-column: auto;
  }
}
/* IXIT brand refresh */
.brand-home .site-header,
.product-page .site-header {
  border-color: var(--line);
  background: rgba(8, 10, 13, 0.88);
}

.brand-hero,
.page-hero {
  padding-top: calc(var(--header-height) + clamp(62px, 9vw, 112px));
}

.brand-hero {
  min-height: min(820px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.brand-hero-grid,
.app-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.brand-hero h1,
.page-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.route-panel,
.concept-phone {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 27, 0.8);
  box-shadow: 0 22px 70px var(--shadow);
}

.route-panel {
  overflow: hidden;
}

.route-panel > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 3px 12px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.route-panel > div:last-child {
  border-bottom: 0;
}

.route-index {
  grid-row: span 2;
  color: var(--accent);
  font-weight: 800;
}

.route-panel small,
.card-status,
.status-line {
  color: var(--muted);
}

.product-grid,
.offer-grid,
.feature-grid,
.audit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

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

.product-card,
.offer-card,
.feature-grid article,
.audit-grid article,
.demo-finding {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 21, 27, 0.78);
}

.product-card,
.offer-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(24px, 4vw, 38px);
}

.product-card h3,
.offer-card h3 {
  margin-top: 28px;
}

.product-card p,
.offer-card p,
.feature-grid p,
.audit-grid li,
.offer-card li,
.demo-finding p,
.status-layout p,
.body-stack p {
  color: var(--muted);
}

.product-card .text-link,
.offer-card .text-link {
  margin-top: auto;
  padding-top: 26px;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-kicker {
  color: var(--quiet);
  font-size: 0.86rem;
  font-weight: 750;
}

.card-status {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.94rem;
}

.app-card {
  border-top: 2px solid var(--accent);
}

.data-card {
  border-top: 2px solid var(--accent-strong);
}

.value-section,
.soft-section {
  background: rgba(255, 255, 255, 0.025);
}

.value-layout,
.split-copy,
.status-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
}

.value-list,
.finding-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list li,
.finding-list li {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.wide-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 750;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.page-hero {
  min-height: min(680px, 92svh);
  display: grid;
  align-items: center;
}

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

.concept-phone {
  position: relative;
  display: grid;
  gap: 13px;
  width: min(100%, 360px);
  min-height: 520px;
  margin-left: auto;
  padding: 28px;
  background: linear-gradient(165deg, rgba(114, 214, 201, 0.16), rgba(16, 21, 27, 0.9) 36%);
}

.phone-top {
  width: 38%;
  height: 6px;
  margin: 0 auto 18px;
  border-radius: 99px;
  background: var(--line);
}

.concept-phone strong {
  font-size: 4rem;
  line-height: 1;
}

.concept-phone small,
.concept-phone em {
  color: var(--muted);
  font-style: normal;
}

.concept-label {
  justify-self: start;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--quiet);
  font-size: 0.76rem;
}

.journey-step {
  display: flex;
  justify-content: space-between;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 10, 13, 0.48);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 3px;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
}

.process-list span {
  color: var(--muted);
}

.feature-grid article,
.audit-grid article {
  min-height: 210px;
  padding: 24px;
}

.offer-card ul,
.audit-grid ul {
  margin: 16px 0 0;
  padding-left: 1.1rem;
}

.offer-card li {
  margin: 8px 0;
}

.featured {
  border-color: rgba(114, 214, 201, 0.5);
}

.status-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-layout > div:last-child {
  max-width: 660px;
}

.status-layout .status-badge {
  margin-bottom: 18px;
}

.audit-grid article h3,
.feature-grid article h3 {
  font-size: 1.3rem;
}

.demo-finding {
  padding: 22px;
}

.demo-finding span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 13px;
  color: var(--text);
  background: rgba(8, 10, 13, 0.72);
  font: inherit;
}

.form-field select:focus {
  border-color: rgba(114, 214, 201, 0.5);
}

@media (max-width: 960px) {
  .brand-hero-grid,
  .app-hero-layout,
  .value-layout,
  .split-copy,
  .status-layout {
    grid-template-columns: 1fr;
  }

  .concept-phone {
    margin-left: 0;
  }

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

@media (max-width: 640px) {
  .product-grid,
  .offer-grid,
  .feature-grid,
  .audit-grid,
  .wide-list {
    grid-template-columns: 1fr;
  }

  .product-card,
  .offer-card {
    min-height: auto;
  }

  .brand-hero h1,
  .page-hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .site-nav a:last-child {
    margin-top: 8px;
    border-top: 1px solid var(--line);
  }
}
.form-hint { margin: 2px 0 0; color: var(--quiet); font-size: 0.86rem; line-height: 1.45; }

/* Prevent horizontal text clipping on narrow devices. */
body {
  overflow-x: hidden;
}

.brand-hero h1,
.page-hero h1,
.intro {
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .brand-hero h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.15rem);
    line-height: 1.04;
  }
}
@media (max-width: 640px) {
  .brand-hero-grid,
  .hero-copy,
  .hero-copy .intro,
  .route-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy .intro {
    font-size: 1rem;
  }
}
@media (max-width: 640px) {
  .brand-hero .section-inner {
    width: calc(100vw - 32px);
    margin-right: 16px;
    margin-left: 16px;
  }
}