:root {
  --color-ink: #172033;
  --color-muted: #5b6472;
  --color-soft: #f7f9fc;
  --color-panel: #ffffff;
  --color-line: #d9e2ef;
  --color-accent: #1d4f8f;
  --color-accent-dark: #10233f;
  --color-accent-soft: #e8f0fb;
  --color-warm: #c08a33;
  --color-deep: #0b172a;
  --shadow-soft: 0 18px 50px rgba(11, 23, 42, 0.1);
  --container: 1120px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-panel);
  color: var(--color-ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(192, 138, 51, 0.75);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--color-ink);
  color: #ffffff;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 226, 239, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
}

.brand-icon {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-name,
.brand-line {
  display: block;
}

.brand-name {
  font-weight: 800;
  line-height: 1.15;
}

.brand-line {
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.nav-toggle {
  position: relative;
  z-index: 61;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-ink);
}

.nav-menu {
  position: fixed;
  inset: 74px 0 auto;
  z-index: 60;
  display: none;
  margin: 0;
  padding: 18px 16px 24px;
  border-bottom: 1px solid var(--color-line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  list-style: none;
}

.nav-menu.is-open {
  display: grid;
  gap: 6px;
}

.nav-menu a {
  display: block;
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-menu a:hover {
  background: var(--color-soft);
}

.nav-menu .nav-cta {
  margin-top: 6px;
  background: var(--color-accent);
  color: #ffffff;
  text-align: center;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: auto;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 60% center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 249, 252, 0.98) 0%, rgba(247, 249, 252, 0.9) 42%, rgba(247, 249, 252, 0.2) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0) 45%);
}

.hero-content {
  align-self: center;
  max-width: 760px;
  padding-block: 56px 68px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--color-accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--color-ink);
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.85rem, 7vw, 4.75rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 8vw, 4rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 14px;
  color: var(--color-accent-dark);
  font-size: clamp(1.28rem, 5vw, 2rem);
  font-weight: 760;
  line-height: 1.25;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 28px;
  color: #334155;
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(29, 79, 143, 0.22);
}

.button-primary:hover {
  background: var(--color-accent-dark);
}

.button-secondary {
  border-color: rgba(16, 35, 63, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-accent-dark);
}

.button-secondary:hover {
  background: #ffffff;
}

.button-disabled {
  border-color: var(--color-line);
  background: var(--color-accent-soft);
  color: var(--color-muted);
  box-shadow: none;
}

.section {
  padding-block: 74px;
}

.muted-section {
  background: var(--color-soft);
}

.trust-strip {
  border-block: 1px solid var(--color-line);
  background: #ffffff;
  padding-block: 18px;
}

.trust-grid {
  display: grid;
  gap: 12px;
}

.trust-grid div {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-accent-soft);
  padding: 14px 16px;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--color-accent-dark);
  font-size: 0.95rem;
}

.trust-grid span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.two-column,
.split-panel,
.ownership-panel,
.about-panel,
.pricing-layout,
.contact-layout,
.footer-layout {
  display: grid;
  gap: 34px;
}

.section-copy {
  color: var(--color-muted);
  font-size: 1.04rem;
}

.section-copy p:last-child,
.section-heading p:last-child,
.split-copy p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--color-muted);
  font-size: 1.04rem;
}

.feature-grid,
.addon-grid {
  display: grid;
  gap: 14px;
}

.feature-card,
.addon-card,
.pricing-card,
.contact-form {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
}

.feature-card,
.addon-card {
  padding: 20px;
}

.feature-card {
  display: grid;
  gap: 10px;
}

.feature-card p,
.addon-card p,
.pricing-card p {
  color: var(--color-muted);
}

.feature-card p:last-child,
.addon-card p:last-child {
  margin-bottom: 0;
}

.check-icon {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent-soft);
}

.check-icon::before {
  content: "";
  width: 12px;
  height: 7px;
  border-bottom: 3px solid var(--color-accent);
  border-left: 3px solid var(--color-accent);
  transform: rotate(-45deg) translate(1px, -1px);
}

.note {
  margin: 22px 0 0;
  border-left: 4px solid var(--color-warm);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 16px 18px;
  color: #334155;
  font-weight: 650;
}

.scope-panel {
  display: grid;
  gap: 20px;
  margin-top: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 22px;
}

.scope-panel p {
  margin-bottom: 0;
  color: var(--color-muted);
}

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

.scope-list li {
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-weight: 680;
}

.scope-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-warm);
}

.split-panel {
  align-items: start;
}

.split-copy p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.business-list {
  display: grid;
  gap: 10px;
}

.business-list span {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 14px 16px;
  color: #26364f;
  font-weight: 720;
}

.examples-section {
  border-top: 1px solid var(--color-line);
  background: #ffffff;
}

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

.example-card {
  display: grid;
  gap: 20px;
  align-content: space-between;
  min-height: 270px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(11, 23, 42, 0.07);
}

.example-card p {
  color: var(--color-muted);
}

.example-card p:last-child {
  margin-bottom: 0;
}

.example-status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  padding: 5px 9px;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.example-status.muted {
  background: #f3eee5;
  color: #7a5a23;
}

.example-button {
  width: 100%;
}

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

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent-dark);
  color: #ffffff;
  font-weight: 850;
}

.ownership-section {
  background:
    linear-gradient(135deg, rgba(232, 240, 251, 0.88), rgba(255, 255, 255, 0.35)),
    var(--color-panel);
}

.ownership-panel {
  border: 1px solid rgba(29, 79, 143, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

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

.addon-card {
  min-height: 150px;
}

.about-section {
  background: #ffffff;
}

.about-panel {
  align-items: start;
  border: 1px solid rgba(29, 79, 143, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 240, 251, 0.6), rgba(255, 255, 255, 0.86)),
    #ffffff;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.about-portrait {
  margin: 0;
}

.about-portrait img {
  width: 100%;
  height: 520px;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(29, 79, 143, 0.18);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 18%;
}

.about-portrait figcaption {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.about-copy {
  align-self: center;
}

.pricing-section {
  background: var(--color-deep);
  color: #ffffff;
}

.pricing-section h2,
.pricing-section .section-kicker {
  color: #ffffff;
}

.pricing-section p {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-layout {
  align-items: center;
}

.pricing-card {
  padding: 26px;
  color: var(--color-ink);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.pricing-label {
  margin-bottom: 8px;
  color: var(--color-accent-dark);
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 14vw, 4.5rem);
}

.pricing-card h3 span {
  display: block;
  color: var(--color-muted);
  font-size: 1rem;
  font-weight: 760;
}

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

.pricing-list li {
  position: relative;
  padding-left: 26px;
  color: #26364f;
  font-weight: 680;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 7px;
  border-bottom: 3px solid var(--color-accent);
  border-left: 3px solid var(--color-accent);
  transform: rotate(-45deg);
}

.pricing-button {
  width: 100%;
}

.pricing-note {
  margin: 18px 0 0;
}

.pricing-clarification {
  border-top: 1px solid var(--color-line);
  padding-top: 14px;
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
}

summary {
  cursor: pointer;
  padding: 18px;
  color: var(--color-ink);
  font-weight: 800;
}

summary::marker {
  color: var(--color-accent);
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--color-muted);
}

.contact-section {
  background: #ffffff;
}

.contact-layout {
  align-items: start;
}

.contact-copy p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.fit-note {
  border-left: 4px solid var(--color-warm);
  border-radius: var(--radius);
  background: var(--color-soft);
  padding: 14px 16px;
  color: #334155;
  font-weight: 650;
}

.email-fallback a {
  color: var(--color-accent-dark);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

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

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd7e8;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--color-ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(29, 79, 143, 0.12);
}

.submit-button {
  width: 100%;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.site-footer {
  background: var(--color-deep);
  color: #ffffff;
  padding-block: 42px 26px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 850;
  text-decoration: none;
}

.footer-brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
}

.site-footer p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer nav a {
  color: #ffffff;
  font-weight: 760;
  text-decoration: none;
}

.site-footer nav a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

@media (min-width: 680px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

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

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

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

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

  .scope-panel {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }

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

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

@media (max-width: 679px) {
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(247, 249, 252, 0.96) 0%, rgba(247, 249, 252, 0.9) 58%, rgba(247, 249, 252, 0.76) 100%),
      linear-gradient(90deg, rgba(247, 249, 252, 0.96) 0%, rgba(247, 249, 252, 0.72) 100%);
  }

  .about-portrait img {
    height: clamp(320px, 104vw, 420px);
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  body.nav-open {
    overflow: auto;
  }

  .nav-menu,
  .nav-menu.is-open {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-menu a {
    padding: 10px 11px;
    font-size: 0.9rem;
  }

  .nav-menu .nav-cta {
    margin-top: 0;
    margin-left: 6px;
    padding-inline: 16px;
  }

  .hero {
    min-height: min(660px, calc(100svh - 112px));
  }

  .hero-image {
    object-position: center;
  }

  .section {
    padding-block: 96px;
  }

  .two-column,
  .split-panel,
  .ownership-panel,
  .pricing-layout,
  .contact-layout,
  .footer-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .about-panel {
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  }

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

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

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

  .pricing-card {
    justify-self: end;
    width: min(100%, 430px);
  }

  .contact-copy {
    position: sticky;
    top: 108px;
  }

  .footer-layout {
    align-items: start;
  }

  .site-footer nav {
    justify-self: end;
    grid-template-columns: repeat(3, max-content);
    column-gap: 24px;
  }
}

@media (min-width: 1120px) {
  .nav-menu a {
    padding-inline: 13px;
  }
}

@media (max-width: 420px) {
  .brand-line {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 48px 58px;
  }

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

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }
}
