:root {
  --ink: #0e1726;
  --ink-soft: #405066;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: #d9ddd9;
  --blue: #2559f5;
  --blue-deep: #173fc1;
  --mint: #b7f4d4;
  --navy: #0b1527;
  --shadow: 0 24px 80px rgba(12, 26, 48, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

.site-frame {
  min-height: 100vh;
  overflow: hidden;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 8px;
}

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(14, 23, 38, 0.1);
  background: rgba(247, 246, 242, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
}

.brand small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.brand-symbol {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}

.site-header nav a {
  position: relative;
  color: #26364c;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--blue);
  content: "";
  transition: transform 180ms ease;
}

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

.hero {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
  padding-block: 88px 104px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.policy-hero h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 760;
  letter-spacing: -0.062em;
  line-height: 0.99;
}

.hero-intro {
  max-width: 680px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 89, 245, 0.22);
}

.button-primary:hover {
  background: var(--blue-deep);
}

.button-secondary {
  border-color: #bdc5ce;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
}

.company-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(14, 23, 38, 0.08);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.company-card::before {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.company-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  width: 118px;
  place-items: center;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.company-card > p {
  margin: 24px 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.company-card dl,
.verification-card dl {
  margin: 0;
}

.company-card dl div,
.verification-card dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.company-card dt,
.verification-card dt {
  color: #68788d;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.company-card dd,
.verification-card dd {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
}

.principles-band {
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  color: var(--white);
}

.principles-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.principles-row span {
  padding: 24px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.principles-row span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.section {
  padding-block: 118px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading h2,
.cta-section h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 750;
  letter-spacing: -0.052em;
  line-height: 1.05;
}

.section-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.product-card {
  display: flex;
  min-height: 510px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 28px;
  color: var(--white);
}

.product-skedari {
  background: linear-gradient(145deg, #1d53ed 0%, #173aad 100%);
}

.product-flota {
  background: linear-gradient(145deg, #132239 0%, #08111e 100%);
}

.product-number {
  color: rgba(255, 255, 255, 0.65);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}

.product-type {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: clamp(42px, 5vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.product-card p:not(.product-type) {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.verification-section {
  background: var(--navy);
  color: var(--white);
}

.verification-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.section-heading-light {
  margin: 0;
}

.section-heading-light .eyebrow {
  color: var(--mint);
}

.section-heading-light > p:last-of-type {
  color: #b8c6d9;
}

.button-light {
  margin-top: 30px;
  background: var(--white);
  color: var(--ink);
}

.verification-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.verification-card dl div {
  grid-template-columns: 138px 1fr;
  border-color: rgba(255, 255, 255, 0.14);
}

.verification-card dt {
  color: #90a4bf;
}

.verification-card a {
  color: var(--mint);
}

.compact-heading {
  margin-bottom: 42px;
}

.registry-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}

.registry-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 750;
  letter-spacing: -0.052em;
  line-height: 1.05;
}

.registry-copy > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.registry-action {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.registry-action > span {
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.registry-action small {
  color: #6a788b;
  font-size: 12px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.commitment-grid article {
  padding: 38px 34px 42px 0;
}

.commitment-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.commitment-grid span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.commitment-grid h3 {
  margin: 42px 0 12px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.commitment-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.cta-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 118px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
}

.cta-section h2 {
  max-width: 700px;
  font-size: clamp(30px, 4vw, 50px);
}

.site-footer {
  padding-top: 72px;
  background: #08111e;
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  padding-bottom: 64px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer small {
  color: #97a8be;
}

.brand-footer .brand-symbol {
  background: var(--mint);
  color: var(--ink);
}

.footer-brand p {
  max-width: 390px;
  margin: 24px 0 0;
  color: #9caac0;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: #8192aa;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  color: #dbe3ef;
  font-size: 13px;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7d8da4;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.policy-hero {
  padding-block: 88px 72px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.policy-hero-inner {
  max-width: 1180px;
}

.policy-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 82px);
}

.policy-hero-inner > p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
  color: #6a788b;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  justify-content: space-between;
  gap: 80px;
  padding-block: 84px 120px;
}

.policy-layout aside {
  position: sticky;
  top: 32px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.policy-layout aside p {
  margin: 8px 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.policy-layout aside .aside-label {
  margin-top: 0;
  color: var(--ink);
  font-weight: 850;
}

.policy-layout aside a {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.policy-content {
  min-width: 0;
}

.policy-content section + section {
  margin-top: 52px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.policy-content h3 {
  margin: 30px 0 12px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.policy-content p,
.policy-content li {
  color: #3f4f64;
  font-size: 16px;
}

.policy-content p {
  margin: 0 0 16px;
}

.policy-content ul,
.policy-content ol {
  margin: 14px 0 18px;
  padding-left: 24px;
}

.policy-content li + li {
  margin-top: 10px;
}

.policy-content a {
  color: var(--blue-deep);
  font-weight: 700;
}

.callout {
  margin: 28px 0;
  padding: 24px;
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  background: #eef2ff;
}

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

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 10px;
}

.support-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.support-card h3 {
  margin-top: 0;
}

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

@media (max-width: 900px) {
  .hero,
  .verification-grid,
  .footer-top,
  .registry-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 60px;
    padding-block: 72px 88px;
  }

  .company-card {
    max-width: 560px;
  }

  .verification-grid {
    gap: 52px;
  }

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

  .commitment-grid article,
  .commitment-grid article + article {
    padding: 32px 0;
    border-left: 0;
  }

  .commitment-grid article + article {
    border-top: 1px solid var(--line);
  }

  .commitment-grid h3 {
    margin-top: 24px;
  }

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

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .policy-layout aside {
    position: static;
    max-width: 420px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-block: 18px;
  }

  .site-header nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .site-header nav a {
    flex: 0 0 auto;
    font-size: 12px;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero h1,
  .policy-hero h1 {
    font-size: clamp(44px, 14vw, 66px);
  }

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

  .company-card {
    padding: 26px;
    border-radius: 22px;
  }

  .company-card dl div,
  .verification-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .principles-row {
    grid-template-columns: 1fr;
  }

  .principles-row span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .section {
    padding-block: 82px;
  }

  .product-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 500px;
    border-radius: 22px;
  }

  .verification-card,
  .cta-section {
    padding: 26px;
  }

  .cta-section {
    margin-bottom: 82px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .policy-hero {
    padding-block: 68px 58px;
  }

  .policy-layout {
    padding-block: 58px 90px;
  }
}

@media (max-width: 430px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
