:root {
  --ink: #0a1620;
  --ink-soft: #4a5d6c;
  --paper: #eef3f6;
  --paper-2: #e2eaef;
  --line: #c5d2dc;
  --teal: #0e7c79;
  --teal-deep: #075554;
  --teal-bright: #19a8a3;
  --teal-soft: #d4efed;
  --navy: #0b1c28;
  --copper: #b86a3c;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(10, 22, 32, 0.09);
  --shadow-soft: 0 8px 24px rgba(10, 22, 32, 0.06);
  --radius: 6px;
  --radius-lg: 14px;
  --font: "DM Sans", "Segoe UI", sans-serif;
  --display: "Instrument Serif", Georgia, serif;
  --header-h: 4.35rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 90% 50% at 100% -10%, rgba(25, 168, 163, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 40% at -10% 30%, rgba(11, 28, 40, 0.05), transparent 45%),
    linear-gradient(rgba(10, 22, 32, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 22, 32, 0.025) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  background-attachment: fixed;
  line-height: 1.55;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--teal);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 0;
}

.shell {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(238, 243, 246, 0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(197, 210, 220, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.08rem;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 560;
}

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

.nav-cta {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(14, 124, 121, 0.25);
}

.nav-cta:hover {
  filter: brightness(1.05);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #f4f7f9;
  background: linear-gradient(160deg, #07131c 0%, #0b2a32 55%, #0a3a3c 100%);
  padding: 3.5rem 0 3.25rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 2rem;
  align-items: center;
}

.hero-main {
  max-width: 40rem;
}

.hero-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fd4d4;
  font-weight: 650;
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero-text {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(244, 247, 249, 0.9);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.hero-points {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1rem;
}

.hero-points li {
  color: rgba(244, 247, 249, 0.86);
  font-size: 0.95rem;
}

.hero-points strong {
  display: inline-block;
  min-width: 4.6rem;
  color: #9fe3de;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 0.55rem;
}

.hero-side {
  justify-self: end;
  width: min(100%, 270px);
}

.flow-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(126, 224, 220, 0.25);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
}

.flow-title {
  margin: 0 0 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9fe3de;
  font-weight: 700;
}

.flow-card ol {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(244, 247, 249, 0.9);
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(197, 210, 220, 0.8);
  background: rgba(255, 255, 255, 0.72);
  padding: 0.65rem 0;
}

.ticker-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  animation: ticker-move 28s linear infinite;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.ticker-track span::before {
  content: "◆";
  margin-right: 1.75rem;
  color: var(--teal-bright);
  font-size: 0.55rem;
  vertical-align: middle;
}

@keyframes ticker-move {
  to {
    transform: translateX(-50%);
  }
}

.blend-rows {
  display: grid;
  gap: 2rem;
}

.blend-row {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 1.35rem;
  align-items: center;
}

.blend-row.reverse {
  grid-template-columns: 1fr 0.42fr;
}

.blend-row.reverse .blend-media {
  order: 2;
}

.blend-row.reverse .blend-copy {
  order: 1;
}

.blend-media {
  min-height: 120px;
  max-width: 220px;
  border-radius: 20px;
  background-image:
    linear-gradient(105deg, var(--paper) 0%, rgba(238, 243, 246, 0.2) 40%, transparent 68%),
    var(--img);
  background-size: cover;
  background-position: center;
  filter: saturate(0.85);
  opacity: 0.9;
}

.blend-copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.blend-copy p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
}

.blend-copy ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.3rem;
}

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

.case-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.15rem 1.25rem;
  box-shadow: var(--shadow-soft);
}

.case-tag {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
}

.case-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

.case-card > p {
  margin: 0 0 0.9rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.case-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.cases-note {
  margin-top: 1.25rem;
}

.section-head-wide {
  max-width: 46rem;
}

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

.exp-block {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem;
}

.exp-block h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.exp-block p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.ai-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.25rem;
  max-width: 340px;
  justify-self: end;
  width: 100%;
}

.ai-panel-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9fd4d4;
  font-weight: 700;
}

.ai-steps {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.ai-steps li {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  color: rgba(244, 247, 249, 0.88);
  font-size: 0.95rem;
}

.ai-steps span {
  font-family: var(--display);
  color: #9fe3de;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.62rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 650;
  font-size: 0.94rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, filter 0.15s ease;
}

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

.btn-primary {
  background: var(--white);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--teal-soft);
  color: var(--ink);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-alt {
  background: rgba(226, 234, 239, 0.72);
  border-block: 1px solid rgba(197, 210, 220, 0.7);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.1rem;
}

.section-head h2 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.55rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 700;
}

.feature-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.feature-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-card img {
  display: block;
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.feature-card figcaption {
  padding: 1rem 1.05rem 1.15rem;
}

.feature-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.solution-list li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.15rem;
}

.solution-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.solution-list p {
  margin: 0;
  color: var(--ink-soft);
}

.section-ai {
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(25, 168, 163, 0.28), transparent 55%),
    linear-gradient(160deg, #07131c 0%, #0b2a32 55%, #083838 100%);
  color: rgba(244, 247, 249, 0.92);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section-ai .section-head h2 {
  color: var(--white);
}

.section-ai .section-head p,
.section-ai .ai-points {
  color: rgba(244, 247, 249, 0.78);
}

.section-ai .eyebrow {
  color: #9fd4d4;
}

.ai-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.ai-points {
  margin: 0 0 1.35rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.ai-points strong {
  color: var(--white);
}

.ai-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  max-width: 280px;
}

.ai-visual img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.ai-visual-stack {
  display: grid;
  gap: 0.85rem;
  justify-items: end;
}

.ai-flow {
  width: min(100%, 280px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 0.85rem 0.95rem;
}

.ai-flow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9fd4d4;
  font-weight: 700;
}

.ai-flow-row i {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #19a8a3, transparent);
  background-size: 200% 100%;
  animation: flow-line 2s linear infinite;
}

@keyframes flow-line {
  to {
    background-position: -200% 0;
  }
}

.ai-bars {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.4rem;
}

.ai-bars span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.ai-bars span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, #0e7c79, #9fe3de);
  animation: bar-grow 2.8s ease-in-out infinite alternate;
}

@keyframes bar-grow {
  from {
    filter: brightness(0.85);
    transform: scaleX(0.92);
    transform-origin: left;
  }
  to {
    filter: brightness(1.15);
    transform: scaleX(1);
    transform-origin: left;
  }
}

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

.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.plan-featured {
  border-color: var(--teal);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(14, 124, 121, 0.16);
}

.plan-badge {
  position: absolute;
  top: -0.65rem;
  left: 1rem;
  margin: 0;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.plan-tier {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--teal-deep);
}

.plan-price {
  margin: 0.55rem 0 0.45rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.plan-price span {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.plan-desc {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.93rem;
  min-height: 3.8rem;
}

.plan-features {
  margin: 0 0 1.2rem;
  padding: 0 0 0 1.05rem;
  color: var(--ink-soft);
  flex: 1;
  font-size: 0.93rem;
}

.plan-features li {
  margin-bottom: 0.4rem;
}

.btn-plan {
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.btn-plan:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
}

.btn-plan-primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  border-color: transparent;
  color: var(--white);
}

.btn-plan-primary:hover {
  filter: brightness(1.05);
  color: var(--white);
}

.pricing-note {
  margin: 1.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: start;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.step-num {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--teal);
  line-height: 1;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.4rem;
}

.stat-row > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.stat-value {
  margin: 0;
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--teal-deep);
}

.stat-label {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footnote {
  margin: 1.4rem 0 0;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.section-contact {
  background:
    linear-gradient(180deg, transparent, rgba(226, 234, 239, 0.85));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(14, 124, 121, 0.28);
  border-color: var(--teal);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.form-status {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.form-status.ok {
  color: var(--teal-deep);
}

.form-status.err {
  color: #8a1f1f;
}

.contact-aside {
  padding: 0.2rem 0;
}

.contact-dl {
  margin: 0;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.25rem;
}

.contact-dl > div {
  margin-bottom: 1.15rem;
}

.contact-dl > div:last-child {
  margin-bottom: 0;
}

.contact-dl dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}

.contact-dl dd {
  margin: 0;
  font-size: 1rem;
}

.portal-cta-note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 50% 60% at 10% 0%, rgba(25, 168, 163, 0.18), transparent 50%),
    #07131c;
  color: rgba(244, 247, 249, 0.78);
  padding: 2.1rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: end;
}

.footer-brand {
  margin: 0;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--white);
}

.footer-meta,
.footer-legal {
  margin: 0.3rem 0 0;
  font-size: 0.86rem;
}

.footer-legal {
  max-width: 26rem;
}

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

.footer-links a {
  color: rgba(244, 247, 249, 0.78);
  text-decoration: none;
  font-size: 0.88rem;
}

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

.page-hero {
  padding: 3.75rem 0 1.75rem;
  background:
    radial-gradient(ellipse 70% 50% at 85% 0%, rgba(25, 168, 163, 0.16), transparent 55%),
    transparent;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.page-lead {
  margin: 0.9rem 0 0;
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}

.page-hero-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 320px;
  justify-self: end;
}

.page-hero-media img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.check-list {
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  display: grid;
  gap: 0.4rem;
}

.narrow {
  width: min(780px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.panel h2 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.85rem;
}

.panel-note {
  margin: 0 0 1.05rem;
  color: var(--ink-soft);
}

.panel-muted {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.panel-success {
  border-color: var(--teal);
}

.agree-row .check-label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.agree-row input {
  margin-top: 0.2rem;
}

.demo-preview {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1.1rem;
  margin-top: 1.1rem;
  align-items: start;
}

.demo-preview img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  height: 140px;
  object-fit: cover;
}

.compact-steps {
  margin-bottom: 1.1rem;
}

.compact-steps li {
  padding: 0.65rem 0.75rem;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.1rem;
  align-items: start;
}

.portal-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.9rem 0 1.1rem;
}

.portal-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
  background: var(--paper);
}

.portal-tile:hover {
  border-color: var(--teal);
}

.portal-tile h3 {
  margin: 0 0 0.3rem;
  font-size: 0.98rem;
}

.portal-tile p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.aside-art {
  display: block;
  width: 100%;
  margin-top: 1.1rem;
  border-radius: var(--radius);
  height: 120px;
  object-fit: cover;
}

.legal-page h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  margin: 0 0 0.45rem;
}

.legal-page h2 {
  margin: 1.6rem 0 0.45rem;
  font-size: 1.1rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.legal-updated {
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .pricing-grid,
  .approach-grid,
  .contact-grid,
  .solution-list,
  .stat-row,
  .feature-gallery,
  .ai-layout,
  .page-hero-grid,
  .portal-grid,
  .demo-preview,
  .portal-tiles,
  .case-grid,
  .exp-grid,
  .blend-row,
  .blend-row.reverse,
  .hero-facts,
  .hero-pro-grid {
    grid-template-columns: 1fr;
  }

  .blend-row.reverse .blend-media,
  .blend-row.reverse .blend-copy {
    order: initial;
  }

  .plan-featured {
    transform: none;
  }

  .ai-visual,
  .ai-visual-stack,
  .ai-panel,
  .page-hero-media,
  .hero-aside {
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }

  .hero-network {
    opacity: 0.35;
    width: 70vw;
    right: -8%;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }
}

@media (max-width: 640px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

  .shell,
  .narrow {
    width: min(1080px, calc(100% - 1.35rem));
  }

  .feature-card img {
    height: 130px;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-logo {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 7px;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .hn-flow,
  .hn-node,
  .hero-aside-line span {
    animation: none !important;
  }
}
