:root {
  --ink: #14191d;
  --navy: #11181f;
  --navy-soft: #1b252d;
  --cream: #f5f3ef;
  --white: #ffffff;
  --muted: #667078;
  --line: #dcdedc;
  --orange: #f06f57;
  --orange-dark: #dc553e;
  --font-sans: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  border-radius: 4px;
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.brand img,
.footer-brand img {
  width: 215px;
  height: auto;
}

.header-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-link svg,
.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.header-link:hover svg,
.button:hover svg {
  transform: translateX(3px);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 76%);
}

.hero::after {
  position: absolute;
  right: -210px;
  bottom: -380px;
  width: 830px;
  height: 830px;
  border: 1px solid rgb(240 111 87 / 23%);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 80px;
  align-items: center;
  min-height: 760px;
  padding-top: 106px;
  padding-bottom: 48px;
}

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

.eyebrow,
.section-label {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
}

.eyebrow span {
  width: 25px;
  height: 2px;
  background: var(--orange);
}

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

h1,
h2 {
  font-weight: 650;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 6.7vw, 6rem);
}

h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-intro {
  max-width: 630px;
  margin-bottom: 34px;
  color: #b8c0c5;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
}

.button {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
}

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

.text-link {
  color: #d4dade;
  font-size: 0.84rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.orbit {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
}

.orbit-one {
  top: 12px;
  left: 0;
  width: 480px;
  height: 480px;
}

.orbit-two {
  top: 82px;
  left: 70px;
  width: 340px;
  height: 340px;
}

.device-card {
  position: absolute;
  top: 96px;
  left: 62px;
  width: 350px;
  overflow: hidden;
  color: var(--ink);
  background: #f8f9f8;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 9px;
  box-shadow: 0 35px 70px rgb(0 0 0 / 32%);
  transform: rotate(-2deg);
}

.device-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  background: #e9eceb;
}

.device-bar i {
  width: 7px;
  height: 7px;
  background: #bbc0bf;
  border-radius: 50%;
}

.device-content {
  padding: 40px;
  text-align: center;
}

.status-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  place-items: center;
}

.status-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.device-content p {
  margin-bottom: 4px;
  color: #7a8286;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.device-content strong {
  display: block;
  margin-bottom: 32px;
  font-size: 1.35rem;
}

.secure-row {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  padding-top: 17px;
  color: #5e666a;
  border-top: 1px solid #e0e3e2;
  font-size: 0.75rem;
  font-weight: 650;
}

.secure-row span {
  width: 7px;
  height: 7px;
  background: #5b9b7b;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(91 155 123 / 14%);
}

.audit-card {
  position: absolute;
  z-index: 2;
  right: -10px;
  bottom: 52px;
  display: flex;
  gap: 13px;
  align-items: center;
  min-width: 220px;
  padding: 15px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 15px 40px rgb(0 0 0 / 25%);
}

.audit-card svg {
  width: 28px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.audit-card span {
  color: #747c80;
  font-size: 0.7rem;
  line-height: 1.45;
}

.audit-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
}

.intro-section {
  padding: 120px 0 110px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 100px;
  align-items: end;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
}

.intro-copy {
  max-width: 535px;
  padding-bottom: 3px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.features-section {
  padding: 100px 0 120px;
  background: var(--white);
}

.features-heading {
  margin-bottom: 58px;
}

.features-heading h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

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

.feature-card {
  position: relative;
  min-height: 400px;
  padding: 44px 42px 42px;
}

.feature-card + .feature-card {
  border-left: 1px solid var(--line);
}

.feature-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #c5c9c7;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 52px;
  color: var(--orange);
  background: #fff3f0;
  border-radius: 50%;
  place-items: center;
}

.feature-icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.72;
}

.cta-section {
  color: var(--white);
  background: var(--orange);
}

.cta-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  min-height: 300px;
  padding-top: 45px;
  padding-bottom: 45px;
}

.cta-section .section-label {
  color: rgb(255 255 255 / 75%);
}

.cta-section h2 {
  max-width: 760px;
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
}

.button-light {
  flex: 0 0 auto;
  color: var(--navy);
  background: var(--white);
}

.button-light:hover {
  background: var(--navy);
  color: var(--white);
}

.site-footer {
  padding: 48px 0;
  color: #aeb6ba;
  background: var(--navy);
}

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

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

.site-footer p {
  margin: 0;
  font-size: 0.75rem;
}

a:focus-visible {
  outline: 3px solid #ff9b87;
  outline-offset: 4px;
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 155px;
    padding-bottom: 100px;
  }

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

  .hero-visual {
    display: none;
  }

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

  .intro-copy {
    max-width: 720px;
  }

  .feature-card {
    padding-inline: 28px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 176px;
  }

  .header-link {
    font-size: 0;
  }

  .header-link::before {
    font-size: 0.72rem;
    content: "Learn more";
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 700px;
    padding-top: 132px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.2rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: center;
  }

  .intro-section,
  .features-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .feature-card {
    min-height: auto;
    padding: 34px 18px 42px;
  }

  .feature-card + .feature-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-icon {
    margin-bottom: 36px;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-items: start;
  }
}

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

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