:root {
  --ivory: #f3eee3;
  --paper: #fffdf8;
  --ink: #17120f;
  --muted: #625b55;
  --line: #ded6c9;
  --coral: #d43b2b;
  --coral-dark: #b92e21;
  --blue: #2f67ad;
  --blue-soft: #e8f0fb;
  --yellow: #f5bf26;
  --shadow: 0 18px 42px rgba(46, 37, 29, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: 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(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; border-radius: 8px; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: .7rem 1rem;
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 238, 227, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(222, 214, 201, .7);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: .65rem clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 5px 14px rgba(0,0,0,.1);
  object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .95rem;
}
.nav-menu a:not(.button) {
  color: var(--muted);
  text-decoration: none;
}
.nav-menu a:hover { color: var(--ink); }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .18rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .7);
  color: var(--muted);
}
.lang-button {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: .42rem .7rem;
  white-space: nowrap;
}
.lang-button.is-active {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
  box-shadow: 0 6px 16px rgba(46, 37, 29, 0.1);
}
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 3vw, 2rem);
}
.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(290px, .72fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-top: clamp(2.4rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.eyebrow,
.section-label {
  margin: 0 0 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
}
h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.02;
  margin: 0;
}
.hero-brand {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 10vw, 7rem);
  line-height: 1;
  font-weight: 500;
}
h2 { font-size: clamp(2.2rem, 5vw, 4.4rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }
.hero-launch {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 1.1rem 0 0;
  padding: .42rem .72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .76);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-line {
  max-width: 860px;
  margin: .95rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.55rem);
  line-height: .98;
}
.hero-text,
.large-text,
.section-heading p,
.pilot p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}
.hero-text { max-width: 650px; }
.stage-line {
  max-width: 640px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
}
.hero-actions { margin-top: 1.7rem; }
.hero-device {
  width: min(355px, 82vw);
  margin: 0;
  display: grid;
  justify-items: center;
  gap: .85rem;
}
.device-frame {
  width: 100%;
  aspect-ratio: 1136 / 2048;
  overflow: hidden;
  border: 10px solid var(--ink);
  border-radius: 40px;
  background: var(--ink);
  box-shadow: 0 20px 42px rgba(46, 37, 29, 0.16);
}
.device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
}
.hero-device figcaption {
  max-width: 310px;
  color: var(--muted);
  font-size: .88rem;
  text-align: center;
}
.value-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.2rem clamp(1rem, 3vw, 2rem) 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(222, 214, 201, .72);
}
.value-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: .85rem;
  align-items: start;
  padding: .95rem;
  border-radius: 24px;
  background: rgba(255, 253, 248, .56);
}
.value-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
}
.value-item h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.2;
}
.value-item p {
  margin: .3rem 0 0;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.4;
}
.color-bars {
  display: flex;
  gap: .65rem;
  margin-top: .5rem;
}
.color-bars span {
  width: 72px;
  height: 10px;
  border-radius: 999px;
}
.color-bars span:nth-child(1) { background: var(--coral); }
.color-bars span:nth-child(2) { background: var(--yellow); }
.color-bars span:nth-child(3) { background: var(--blue); }
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .9rem 1.35rem;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(231,75,55,.25);
  border: 2px solid var(--coral);
}
.button:hover { background: var(--coral-dark); border-color: var(--coral-dark); }
.button-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.button-small { min-height: 42px; padding: .55rem .95rem; }
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-frame {
  border: 10px solid #17120f;
  border-radius: 42px;
  background: #17120f;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 30px;
}
.hero-mark-card {
  width: min(430px, 86vw);
  min-height: 460px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 38px;
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}
.hero-mark-card img {
  width: min(230px, 58vw);
  aspect-ratio: 1;
  object-fit: contain;
}
.hero-mark-card p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.12;
}
.split {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}
.large-text { margin: 2rem 0 0; }
.section-heading {
  max-width: 850px;
  margin-bottom: 2rem;
}
.card-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.feature-card,
.team-card {
  min-height: 210px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 2.5rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: var(--serif);
  font-weight: 800;
}
.product {
  max-width: none;
  background: var(--paper);
}
.product > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.disclaimer {
  display: inline-flex;
  margin-top: .5rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
}
.phone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.phone-card {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 1rem;
}
.phone-card .phone-frame {
  width: min(330px, 100%);
  aspect-ratio: 1136 / 2048;
}
figcaption {
  font-weight: 800;
  color: var(--muted);
}
.phone-card figcaption {
  max-width: 330px;
  text-align: center;
}
.phone-card figcaption strong {
  display: block;
  color: var(--ink);
}
.phone-card figcaption span {
  display: block;
  margin-top: .35rem;
  font-size: .92rem;
  line-height: 1.45;
  font-weight: 500;
}
.trust {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.trust-list {
  display: grid;
  gap: .85rem;
}
.trust-list div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(46, 37, 29, 0.08);
}
.trust-list span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, white 0 25%, var(--blue) 26% 100%);
}
.trust-list p { margin: 0; font-weight: 800; }
.pilot,
.final-cta {
  border-radius: 34px;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.pilot p { max-width: 720px; color: #d6cfc4; }
.team-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-height: 260px;
}
.team-card h3,
.team-card p { margin: 0; }
.team-card p:first-of-type {
  color: var(--blue);
  font-weight: 800;
}
.team-card p:last-child {
  color: var(--muted);
  margin-top: auto;
}
.final-cta {
  display: block;
  text-align: center;
}
.final-cta .actions { justify-content: center; }
.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem clamp(1rem, 3vw, 2rem) 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer p { margin: .25rem 0 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
}
.footer-links a { text-decoration: none; }

@media (max-width: 960px) {
  .team-card { min-height: 230px; }
  .hero,
  .split,
  .trust {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .value-strip { grid-template-columns: 1fr; }
  .card-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .team-card { min-height: auto; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: 70px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .nav-open .nav-menu { display: flex; }
  .nav-menu a { padding: .6rem; }
  .language-switch {
    align-self: flex-start;
    margin: .35rem .6rem;
  }
  .section { padding-block: 3.5rem; }
  .hero { padding-top: 2.25rem; }
  .hero-brand { font-size: clamp(3rem, 18vw, 5.25rem); }
  .hero-line { font-size: clamp(2rem, 9vw, 3rem); }
  .phone-grid,
  .card-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .phone-card .phone-frame { width: min(315px, 88vw); }
  .pilot {
    display: block;
  }
  .pilot .button { margin-top: 1rem; width: 100%; }
  .actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
