:root {
  color-scheme: light;
  --ink: #12151c;
  --ink-soft: #3e4a5c;
  --muted: #667085;
  --line: #dce3ee;
  --paper: #fbfdff;
  --paper-strong: #ffffff;
  --mist: #eef5fb;
  --blue: #1478d4;
  --blue-deep: #0d4e94;
  --mint: #19a974;
  --coral: #e46f4f;
  --amber: #c9821a;
  --violet: #6f5bd6;
  --shadow-sm: 0 8px 24px rgba(22, 34, 51, 0.08);
  --shadow-md: 0 18px 48px rgba(22, 34, 51, 0.12);
  --shadow-lg: 0 28px 72px rgba(22, 34, 51, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
summary {
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 253, 255, 0.82);
  border-bottom: 1px solid rgba(220, 227, 238, 0.75);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 760;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: var(--shadow-sm);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 15px;
}

.nav-links a {
  border-radius: 999px;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue-deep);
  outline: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 740;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible,
.use-case:hover,
.use-case:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 10px));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 118px max(28px, calc((100vw - var(--max)) / 2)) 48px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.64) 45%, rgba(238, 245, 251, 0.42) 100%),
    linear-gradient(90deg, rgba(20, 120, 212, 0.12), rgba(25, 169, 116, 0.08) 54%, rgba(228, 111, 79, 0.09)),
    linear-gradient(180deg, #f8fbff 0%, #edf4f6 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 21, 28, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 21, 28, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(690px, 100%);
  padding-top: 22px;
}

.eyebrow,
.section-kicker,
.platform,
.localized-name {
  margin: 0;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.localized-name {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.hero h1 {
  width: min(980px, 100%);
  margin: 16px 0 22px;
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

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

.button {
  padding: 0 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(20, 120, 212, 0.26);
}

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

.button-secondary {
  color: var(--ink);
  border: 1px solid rgba(18, 21, 28, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-icon,
.hero-screen {
  position: absolute;
  filter: drop-shadow(0 26px 56px rgba(22, 34, 51, 0.18));
}

.hero-icon {
  border-radius: 24%;
}

.hero-icon-clean {
  width: clamp(98px, 13vw, 178px);
  right: clamp(48px, 12vw, 220px);
  top: 112px;
  transform: rotate(-8deg);
}

.hero-icon-translate {
  width: clamp(86px, 10vw, 144px);
  right: clamp(18px, 6vw, 130px);
  top: 300px;
  transform: rotate(10deg);
}

.hero-icon-privacy {
  width: clamp(90px, 11vw, 158px);
  right: clamp(212px, 26vw, 420px);
  top: 392px;
  transform: rotate(4deg);
}

.hero-screen-mobile {
  width: min(290px, 25vw);
  right: clamp(190px, 30vw, 510px);
  bottom: -62px;
  border-radius: 34px;
  opacity: 0.72;
}

.hero-screen-mac {
  width: min(660px, 46vw);
  right: -80px;
  bottom: 34px;
  border-radius: 22px;
  opacity: 0.66;
}

.hero-facts {
  position: relative;
  z-index: 4;
  width: min(var(--max), 100%);
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(18, 21, 28, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(18, 21, 28, 0.1);
  box-shadow: var(--shadow-sm);
}

.hero-facts div {
  min-height: 108px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.hero-facts strong {
  display: block;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.section-inner > h2,
.proof-layout h2,
.privacy-layout h2,
.closing-inner h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.section-inner > p,
.proof-layout p,
.privacy-layout p,
.closing-inner p {
  color: var(--ink-soft);
  font-size: 18px;
}

.intro-band {
  padding: 76px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(18, 21, 28, 0.88), rgba(31, 60, 72, 0.92)),
    linear-gradient(90deg, var(--blue), var(--mint));
}

.intro-band .section-inner {
  width: min(940px, calc(100% - 40px));
}

.intro-band .section-kicker,
.closing-band .section-kicker {
  color: #91f0c8;
}

.intro-band p,
.intro-band .section-inner > p {
  color: rgba(255, 255, 255, 0.78);
}

.apps-section {
  background: #fff;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.app-card,
.use-case,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-strong);
  box-shadow: var(--shadow-sm);
}

.app-card {
  display: flex;
  min-height: 424px;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 120, 212, 0.34);
  box-shadow: var(--shadow-md);
}

.feature-card {
  background:
    linear-gradient(145deg, rgba(238, 247, 255, 0.82), rgba(255, 255, 255, 0.96)),
    #fff;
}

.app-topline {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.app-icon {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  border-radius: 23%;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(22, 34, 51, 0.14);
}

.app-card h3 {
  margin: 4px 0 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.app-summary {
  margin: 22px 0 18px;
  color: var(--ink-soft);
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
}

.feature-list li {
  position: relative;
  padding-left: 23px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
}

.intent-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.intent-row span {
  border: 1px solid rgba(20, 120, 212, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--blue-deep);
  background: #f2f8ff;
  font-size: 13px;
  font-weight: 720;
}

.visual-proof {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.proof-layout,
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
}

.proof-media {
  position: relative;
  min-height: 480px;
}

.phone-shot,
.mac-shot {
  position: absolute;
  box-shadow: var(--shadow-lg);
}

.phone-shot {
  left: 0;
  bottom: 0;
  width: min(250px, 36%);
  border-radius: 32px;
  z-index: 2;
}

.mac-shot {
  right: 0;
  top: 26px;
  width: min(620px, 86%);
  border-radius: 20px;
}

.use-cases {
  background: #fff;
}

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

.use-case {
  min-height: 210px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.use-case span {
  display: block;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.use-case strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.15;
}

.use-case small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.use-case:hover,
.use-case:focus-visible {
  border-color: rgba(228, 111, 79, 0.32);
  box-shadow: var(--shadow-md);
}

.privacy-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 120, 212, 0.82), rgba(25, 169, 116, 0.82)),
    #1d5f6a;
}

.privacy-band .section-kicker {
  color: #e7fff4;
}

.privacy-band p {
  color: rgba(255, 255, 255, 0.78);
}

.principle-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.22);
}

.principle-list div {
  padding: 24px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.principle-list strong {
  display: block;
  font-size: 20px;
}

.principle-list p {
  margin: 8px 0 0;
}

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

.intent-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.intent-table [role="row"] {
  display: grid;
  grid-template-columns: 1fr 0.78fr 1.28fr;
  gap: 1px;
  background: var(--line);
}

.intent-table span {
  padding: 18px;
  background: #fff;
  color: var(--ink-soft);
}

.intent-table .intent-head span {
  color: var(--ink);
  background: #eef5fb;
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 760;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(20, 120, 212, 0.24);
  outline-offset: 4px;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--ink-soft);
  font-size: 17px;
}

.closing-band {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(18, 21, 28, 0.92), rgba(32, 36, 47, 0.9)),
    #12151c;
}

.closing-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.closing-inner .button {
  align-self: center;
}

.closing-band p {
  color: rgba(255, 255, 255, 0.74);
}

.footer {
  background: #0f1218;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}

.footer-inner div {
  display: flex;
  gap: 18px;
}

.footer a:hover,
.footer a:focus-visible {
  color: #fff;
  outline: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-copy {
    width: min(620px, 100%);
  }

  .hero-media {
    opacity: 0.3;
  }

  .hero-screen-mac {
    width: 680px;
    right: -300px;
  }

  .hero-screen-mobile {
    display: none;
  }

  .hero-facts,
  .app-grid,
  .section-heading,
  .proof-layout,
  .privacy-layout,
  .closing-inner {
    grid-template-columns: 1fr;
  }

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

  .proof-media {
    min-height: 380px;
  }

  .intent-table {
    overflow-x: auto;
  }

  .intent-table [role="row"] {
    min-width: 820px;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 28px, var(--max));
    min-height: 64px;
  }

  .brand span:last-child {
    max-width: 156px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 96px 20px 34px;
  }

  .hero-copy,
  .hero h1,
  .hero-lede {
    width: min(340px, calc(100vw - 40px));
    max-width: min(340px, calc(100vw - 40px));
  }

  .hero h1 {
    font-size: clamp(38px, 10.8vw, 46px);
    line-height: 1.03;
  }

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

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

  .button {
    width: 100%;
  }

  .hero-icon-clean {
    right: -8px;
    top: 96px;
  }

  .hero-icon-translate {
    right: -22px;
    top: 250px;
  }

  .hero-icon-privacy {
    right: 78px;
    top: 332px;
  }

  .hero-facts {
    margin-top: 46px;
  }

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

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .section-inner > h2,
  .proof-layout h2,
  .privacy-layout h2,
  .closing-inner h2 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.06;
  }

  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .app-card {
    min-height: auto;
  }

  .app-topline {
    align-items: flex-start;
  }

  .app-icon {
    width: 68px;
    height: 68px;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .proof-media {
    min-height: 310px;
  }

  .phone-shot {
    width: 42%;
  }

  .mac-shot {
    width: 86%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
  }
}

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