@font-face {
  font-family: "Manrope";
  src: url("/?asset=Manrope.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #18253a;
  --muted: #5f718c;
  --surface: #ffffff;
  --canvas: #f4f7fb;
  --canvas-blue: #eaf2ff;
  --line: #d5e1f2;
  --blue: #2f62cb;
  --blue-dark: #214aa0;
  --blue-soft: #dbe8ff;
  --orange: #e98455;
  --orange-soft: #fff0e8;
  --violet: #7c4dff;
  --shadow: 0 28px 80px rgba(33, 74, 160, 0.15);
  --content: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: relative;
  z-index: 10;
  width: var(--content);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(33, 74, 160, 0.16);
}

.site-header nav,
footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.site-header nav a,
footer nav a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover,
footer nav a:hover {
  color: var(--blue);
}

.site-header .locale-link {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  background: var(--surface);
}

main {
  overflow: clip;
}

.hero {
  width: var(--content);
  min-height: 760px;
  margin: 0 auto;
  padding: 88px 0 104px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.story-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.6;
}

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

.hero-actions {
  margin-top: 36px;
}

.button {
  min-height: 52px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(47, 98, 203, 0.24);
}

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

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #b8c9e1;
  background: var(--surface);
}

.hero-facts {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}

.hero-facts div {
  min-height: 116px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-facts dt {
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.4;
}

.hero-product {
  position: relative;
  margin: 0;
  display: grid;
  justify-items: center;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 8% -5% 13%;
  z-index: -1;
  border-radius: 50%;
  background: #dbe8ff;
  filter: blur(2px);
}

.hero-product figcaption {
  max-width: 360px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  text-align: center;
}

.phone {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 511 / 968;
  filter: drop-shadow(0 34px 44px rgba(24, 37, 58, 0.2));
}

.phone-hero {
  width: min(100%, 430px);
}

.phone-feature {
  width: min(100%, 330px);
}

.phone-screen {
  position: absolute;
  left: 11.55%;
  top: 5.99%;
  width: 76.91%;
  height: 88.02%;
  overflow: hidden;
  border-radius: 9.6% / 4.4%;
  background: #ffffff;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.phone-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.collection {
  padding: 112px max(24px, calc((100% - 1180px) / 2));
  background: var(--ink);
  color: #ffffff;
}

.section-heading {
  max-width: 800px;
}

.section-heading h2,
.closing h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.collection .section-heading > p:last-child {
  color: #aebbd0;
}

.collection .eyebrow {
  color: #83a9ff;
}

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

.value-grid article {
  min-height: 300px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.value-index {
  color: #83a9ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.value-grid h3 {
  margin: auto 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.value-grid p {
  margin: 0;
  color: #aebbd0;
}

.experience {
  width: var(--content);
  margin: 0 auto;
  padding: 128px 0;
}

.section-heading-centered {
  margin: 0 auto 96px;
  text-align: center;
}

.section-heading-centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.story-row {
  min-height: 690px;
  padding: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
  border: 1px solid var(--line);
  border-radius: 40px;
  background: var(--surface);
  box-shadow: 0 20px 70px rgba(33, 74, 160, 0.08);
}

.story-row + .story-row {
  margin-top: 32px;
}

.story-row-reverse .story-copy {
  order: 2;
}

.story-row-reverse .phone {
  order: 1;
}

.story-copy h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.story-copy > p:not(.story-kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.story-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.story-copy li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--ink);
  font-weight: 700;
}

.story-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.closing {
  width: var(--content);
  margin: 0 auto 96px;
  padding: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  border-radius: 36px;
  background: var(--canvas-blue);
  border: 1px solid var(--line);
}

.closing h2 {
  max-width: 680px;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.closing-actions {
  max-width: 380px;
  justify-content: flex-end;
}

footer {
  width: var(--content);
  min-height: 120px;
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 960px) {
  :root {
    --content: min(100% - 32px, 760px);
  }

  .site-header nav a:not(.locale-link) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 88px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-facts {
    max-width: 640px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .hero-product {
    margin-top: 24px;
  }

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

  .value-grid article {
    min-height: 240px;
  }

  .story-row {
    min-height: 0;
    padding: 56px 44px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .story-row .story-copy,
  .story-row .phone {
    order: initial;
  }

  .story-copy > p:not(.story-kicker) {
    margin-right: auto;
    margin-left: auto;
  }

  .story-copy ul {
    display: inline-grid;
    text-align: left;
  }

  .closing {
    padding: 48px;
    display: grid;
    align-items: start;
  }

  .closing-actions {
    max-width: none;
    justify-content: flex-start;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --content: calc(100% - 24px);
  }

  .site-header {
    min-height: 72px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .site-header nav {
    gap: 10px;
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 4.9rem);
  }

  .hero {
    padding-top: 48px;
    gap: 48px;
  }

  .hero-facts {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: auto;
    padding: 18px 20px;
  }

  .collection {
    padding: 88px 20px;
  }

  .value-grid {
    margin-top: 48px;
  }

  .value-grid article {
    min-height: 220px;
    padding: 26px;
  }

  .experience {
    padding: 96px 0;
  }

  .section-heading-centered {
    margin-bottom: 64px;
  }

  .story-row {
    padding: 44px 22px;
    border-radius: 30px;
    gap: 48px;
  }

  .story-copy h3 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .phone-feature {
    width: min(100%, 300px);
  }

  .closing {
    margin-bottom: 64px;
    padding: 40px 24px;
    border-radius: 28px;
  }

  .closing-actions {
    display: grid;
  }

  footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

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

  .button {
    transition: none;
  }
}
