:root {
  --or-blue-dark: #0b3c5d;
  --or-blue-deep: #072d47;
  --or-accent: #2fa4ff;
  --brand-blue: #1b3a6b;
  --brand-amber: #f59e0b;
  --ink: #0f172a;
  --text: #344054;
  --muted: #667085;
  --line: #d8e0e8;
  --page: #f4f7fa;
  --white: #ffffff;
  --success: #16a34a;
  --danger: #b42318;
  --warning: #b54708;
  --shadow: 0 22px 60px rgba(11, 60, 93, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--or-blue-dark);
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.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: 10;
  border-bottom: 1px solid rgba(216, 224, 232, 0.7);
  background: rgba(244, 247, 250, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-link img {
  width: 172px;
}

.brand-link span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 750;
}

.site-menu a {
  transition: color 0.18s ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--or-blue-dark);
}

.nav-login {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--or-blue-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--or-blue-dark);
}

.section-band {
  background: linear-gradient(135deg, var(--or-blue-dark), var(--or-blue-deep));
  color: var(--white);
}

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

.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -160px 42%;
  height: 340px;
  background: radial-gradient(circle, rgba(47, 164, 255, 0.22), transparent 64%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 54px;
  min-height: min(780px, calc(100vh - 136px));
  padding: 58px 0 64px;
}

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

.hero h1,
.section-heading h2,
.split-section h2,
.about-copy h2,
.final-cta h2 {
  margin: 0;
  color: inherit;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 5.1vw, 4.65rem);
  font-weight: 900;
}

.hero-subtitle {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d7e4ef;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  font-weight: 550;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn:focus-visible,
.site-menu a:focus-visible,
.footer-inner a:focus-visible {
  outline: 3px solid rgba(47, 164, 255, 0.38);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--or-accent);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(47, 164, 255, 0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--or-blue-dark);
  border-color: var(--white);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.btn.full {
  width: 100%;
}

.btn-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
}

.btn-secondary .btn-icon {
  background: #e5f4ff;
  color: var(--or-blue-dark);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #d7e4ef;
  font-size: 0.86rem;
  font-weight: 800;
}

.dashboard-mockup {
  display: grid;
  grid-template-columns: 178px 1fr;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.mockup-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 14px;
  background: linear-gradient(180deg, var(--or-blue-dark), var(--or-blue-deep));
}

.mockup-sidebar img {
  width: 145px;
  margin-bottom: 14px;
}

.mock-nav {
  padding: 10px 11px;
  border-radius: var(--radius);
  color: #d7e4ef;
  font-size: 0.83rem;
  font-weight: 800;
}

.mock-nav.active {
  background: rgba(47, 164, 255, 0.22);
  color: var(--white);
}

.mockup-content {
  padding: 22px;
  background: #f7fbff;
}

.mockup-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(11, 60, 93, 0.08);
}

.mockup-top strong {
  display: block;
  color: var(--or-blue-dark);
  font-size: 1.05rem;
  line-height: 1.25;
}

.mock-eyebrow {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.date-pill {
  padding: 8px 10px;
  border-radius: var(--radius);
  background: #e5f4ff;
  color: var(--or-blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.metric-grid article {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric-grid span,
.mock-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--or-blue-dark);
  font-size: 2rem;
  line-height: 1;
}

.metric-grid .danger {
  color: var(--danger);
}

.mock-table {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.mock-row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 10px 14px;
  border-bottom: 1px solid #edf2f7;
}

.mock-row:last-child {
  border-bottom: 0;
}

.mock-head {
  background: #f4f7fa;
  font-weight: 900;
}

.status {
  justify-self: start;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
}

.status.ok {
  background: #dcfce7;
  color: var(--success);
}

.status.warn {
  background: #fef0c7;
  color: var(--warning);
}

.status.bad {
  background: #fee4e2;
  color: var(--danger);
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 36px 0 42px;
}

.benefit-strip article,
.feature-grid article,
.price-card,
.about-card,
.audience-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(11, 60, 93, 0.06);
}

.benefit-strip article {
  padding: 24px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: #e5f4ff;
  color: var(--or-blue-dark);
  font-weight: 900;
}

.benefit-strip h2,
.feature-grid h3,
.price-card h3 {
  margin: 0;
  color: var(--or-blue-dark);
  line-height: 1.2;
}

.benefit-strip p,
.feature-grid p,
.price-card p,
.about-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 64px;
  align-items: start;
  padding: 78px 0;
}

.split-section h2,
.section-heading h2,
.about-copy h2,
.final-cta h2 {
  color: var(--or-blue-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
}

.split-section p,
.section-heading p,
.about-copy p,
.final-cta p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.audience-list {
  display: grid;
  gap: 14px;
}

.audience-list article {
  padding: 18px;
}

.audience-list strong {
  display: block;
  color: var(--or-blue-dark);
  font-size: 1.05rem;
}

.audience-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.features-band {
  padding: 82px 0;
  background: #ffffff;
  color: var(--text);
}

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

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

.feature-grid article {
  min-height: 214px;
  padding: 22px;
}

.feature-grid article span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--or-accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing-section {
  padding: 82px 0;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(47, 164, 255, 0.55);
  box-shadow: var(--shadow);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e5f4ff;
  color: var(--or-blue-dark);
  font-size: 0.74rem;
  font-weight: 900;
}

.price-card-top {
  min-height: 96px;
  padding-right: 120px;
}

.price-card:not(.featured) .price-card-top {
  padding-right: 0;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 22px;
}

.price strong {
  color: var(--or-blue-dark);
  font-size: 3rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  color: var(--text);
  font-weight: 650;
}

.price-card li::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
}

.price-card .btn {
  margin-top: auto;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  padding: 34px 0 92px;
}

.about-card {
  padding: 28px;
}

.about-card img {
  width: 210px;
}

.about-card span {
  display: block;
  margin-top: 18px;
  color: var(--or-accent);
  font-weight: 900;
}

.contact-section {
  padding: 0 0 84px;
}

.contact-card {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 14px 34px rgba(11, 60, 93, 0.06);
}

.contact-card h2 {
  margin: 0;
  color: var(--or-blue-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 900;
}

.contact-card p:not(.eyebrow) {
  max-width: 520px;
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  width: min(100%, 620px);
  margin-top: 2px;
  text-align: left;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--or-blue-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbff;
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  line-height: 1.4;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-form input {
  min-height: 46px;
  padding: 11px 12px;
}

.contact-form textarea {
  min-height: 136px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--or-accent);
  outline: 0;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47, 164, 255, 0.14);
}

.contact-submit {
  justify-self: center;
  min-width: 158px;
  margin-top: 2px;
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  text-align: center;
  font-size: 0.94rem;
  font-weight: 800;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.contact-email {
  margin-top: 14px;
  color: var(--or-blue-dark);
  font-weight: 850;
}

.final-cta {
  padding: 68px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta p {
  color: #d7e4ef;
}

.site-footer {
  background: #071f33;
  color: #d7e4ef;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.8fr;
  gap: 34px;
  padding: 42px 0;
}

.footer-inner img {
  width: 180px;
}

.footer-inner p {
  max-width: 330px;
  margin: 16px 0 8px;
  color: #b9c7d3;
}

.footer-inner span {
  color: var(--or-accent);
  font-weight: 850;
}

.footer-inner nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-inner a {
  color: #d7e4ef;
  font-weight: 650;
}

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

.legal-page {
  background: var(--page);
}

.legal-hero {
  padding: 74px 0 42px;
  background: linear-gradient(135deg, var(--or-blue-dark), var(--or-blue-deep));
  color: var(--white);
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  line-height: 1.06;
  font-weight: 900;
}

.legal-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #d7e4ef;
}

.legal-content {
  padding: 52px 0 84px;
}

.legal-card {
  max-width: 900px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(11, 60, 93, 0.06);
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--or-blue-dark);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--text);
}

.legal-card a {
  color: var(--or-blue-dark);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dashboard-mockup {
    max-width: 760px;
  }

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

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

@media (max-width: 820px) {
  .brand-link span {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-menu {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 22px 50px rgba(11, 60, 93, 0.12);
  }

  .site-menu.is-open {
    display: grid;
  }

  .site-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid #eef3f7;
  }

  .site-menu a:last-child {
    border-bottom: 0;
  }

  .legal-page .site-menu {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .legal-page .site-menu a {
    display: none;
  }

  .legal-page .site-menu a:last-child {
    display: inline-flex;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .hero-inner {
    padding: 46px 0 54px;
  }

  .dashboard-mockup {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mockup-sidebar {
    display: none;
  }

  .benefit-strip,
  .split-section,
  .pricing-grid,
  .about-section,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .benefit-strip {
    padding-top: 30px;
  }

  .split-section,
  .pricing-section,
  .features-band {
    padding: 58px 0;
  }

  .about-section {
    padding-bottom: 66px;
  }

  .contact-section {
    padding-bottom: 58px;
  }

  .cta-inner {
    display: grid;
  }
}

@media (max-width: 620px) {
  .section-wrap,
  .hero-inner,
  .footer-inner,
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }

  .brand-link img {
    width: 154px;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .trust-row {
    margin-top: 20px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .metric-grid,
  .feature-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .mockup-content {
    padding: 14px;
  }

  .mockup-top {
    display: grid;
  }

  .mock-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .dashboard-mockup {
    display: none;
  }

  .price-card {
    padding: 22px;
  }

  .price-card-top {
    min-height: 0;
    padding-right: 0;
    padding-top: 34px;
  }

  .plan-badge {
    left: 22px;
    right: auto;
  }

  .legal-card {
    padding: 24px;
  }

  .contact-card {
    padding: 26px 18px;
  }

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

  .contact-submit {
    width: 100%;
  }
}
