:root {
  --navy: #001f3f;
  --navy-2: #062b4e;
  --ink: #071b31;
  --muted: #5d7283;
  --teal: #009b8f;
  --teal-2: #12b8aa;
  --mint: #dff7f4;
  --paper: #f7fbfc;
  --line: #dbe7ec;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 31, 63, 0.16);
  --radius: 8px;
  --font: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
}

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

a {
  color: inherit;
}

.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: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(0, 31, 63, 0.9);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 218px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a,
.header-cta,
.email-link {
  text-decoration: none;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(0, 31, 63, 0.98), rgba(0, 43, 79, 0.93) 52%, rgba(247, 251, 252, 0.98) 52.2%),
    var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  right: 44%;
  top: -18%;
  width: 180px;
  height: 140%;
  background: var(--teal);
  transform: rotate(22deg);
  opacity: 0.9;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 740px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6.6vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-text {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.button-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(0, 155, 143, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.trust-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.trust-row dt {
  margin-bottom: 6px;
  color: var(--white);
  font-weight: 950;
}

.trust-row dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: min(680px, 74vh);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 16%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 46%;
}

.phone-card {
  position: absolute;
  left: 0;
  bottom: 8%;
  z-index: 3;
  width: min(244px, 38vw);
  padding: 12px;
  border-radius: 32px;
  background: #101820;
  box-shadow: 0 30px 70px rgba(0, 31, 63, 0.32);
}

.phone-top {
  width: 54px;
  height: 6px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.phone-screen {
  min-height: 360px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fffd, #eef8f7);
  color: var(--ink);
}

.app-pill {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.phone-screen strong,
.phone-screen small {
  display: block;
}

.phone-screen small {
  margin-top: 4px;
  color: var(--muted);
}

.phone-screen ul {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.phone-screen li {
  padding: 10px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.service-float {
  position: absolute;
  right: 6%;
  bottom: 7%;
  z-index: 4;
  width: min(280px, 52vw);
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-float span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.service-float strong {
  font-size: 22px;
}

.intro-band {
  padding: 38px clamp(18px, 5vw, 72px);
  background: var(--teal);
  color: var(--white);
}

.intro-band p {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(24px, 3.4vw, 46px);
  line-height: 1.08;
  font-weight: 950;
  text-align: center;
}

.section-heading {
  max-width: 860px;
  margin: 0 0 42px;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.narrow {
  max-width: 720px;
}

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

.service-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 31, 63, 0.06);
}

.service-card.is-featured {
  background: var(--navy);
  color: var(--white);
}

.service-card p {
  color: var(--muted);
  line-height: 1.55;
}

.service-card.is-featured p {
  color: rgba(255, 255, 255, 0.74);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal);
  font-weight: 950;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  background: var(--white);
}

.split-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--paper);
}

.steps span,
.process span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
}

.steps p {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.how {
  background:
    linear-gradient(180deg, rgba(223, 247, 244, 0.65), rgba(247, 251, 252, 0));
}

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

.process article {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.process span {
  width: auto;
  min-width: 68px;
  padding: 0 16px;
  margin-bottom: 28px;
  background: var(--teal);
}

.process p {
  color: var(--muted);
  line-height: 1.55;
}

.launch {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 42px;
  align-items: start;
  background: var(--navy);
  color: var(--white);
}

.launch ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.launch li {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.45;
}

.contact {
  background: var(--paper);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 52px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.email-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 950;
}

.contact-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 15px 16px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #00172d;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 190px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .hero,
  .split,
  .launch,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: var(--navy);
  }

  .hero::after {
    right: -80px;
    width: 120px;
  }

  .hero-visual {
    min-height: 620px;
  }

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 184px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: none;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 14px;
  }

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

  .header-cta {
    display: none;
  }

  .trust-row,
  .service-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-photo {
    inset: 0;
  }

  .phone-card {
    width: 190px;
  }

  .phone-screen {
    min-height: 280px;
    padding: 14px;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 58px 14px;
  }

  .hero {
    padding-top: 66px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 50px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 42px);
  }

  .hero-text {
    font-size: 18px;
  }

  .trust-row div,
  .service-card,
  .process article,
  .launch li {
    padding: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .phone-card {
    display: none;
  }

  .hero-photo {
    inset: 0;
  }

  .service-float {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }
}
