:root {
  color-scheme: light;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --ink: #0b0d12;
  --muted: #606775;
  --line: #e7e9ee;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgb(15 23 42 / 8%);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #ffffff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.language-switcher {
  gap: 8px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.language-switcher span {
  color: #b0b5bf;
}

.language-switcher a[aria-current="page"],
nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.brand {
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 550;
  transition: color 160ms ease;
}

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

a:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgb(37 99 235 / 32%);
  outline-offset: 4px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 24%, rgb(37 99 235 / 11%), transparent 28%),
    linear-gradient(180deg, #f9fafc 0%, #ffffff 84%);
  place-items: center;
}

.hero::after {
  position: absolute;
  right: -140px;
  bottom: 50px;
  width: 420px;
  height: 420px;
  border: 1px solid rgb(37 99 235 / 10%);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  top: 160px;
  left: max(-120px, calc(50% - 700px));
  width: 320px;
  height: 320px;
  border-radius: 42% 58% 55% 45%;
  background: linear-gradient(135deg, rgb(37 99 235 / 10%), rgb(37 99 235 / 2%));
  filter: blur(1px);
  transform: rotate(18deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 150px 110px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 8.25rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero-copy {
  max-width: 680px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 38px;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--accent);
  font-size: 0.94rem;
  font-weight: 650;
  box-shadow: 0 12px 32px rgb(37 99 235 / 22%);
  transition: background 160ms ease, transform 160ms ease;
}

.primary-action:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.apps-section {
  padding-block: 110px 140px;
}

.section-heading {
  margin-bottom: 52px;
}

h2 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.app-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.app-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgb(11 13 18 / 6%);
  border-radius: 50%;
  content: "";
}

.app-card:hover {
  border-color: #d7dbe3;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.app-card:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgb(37 99 235 / 12%), var(--shadow);
}

.card-cover-link {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
}

.card-cover-link:focus-visible {
  outline: 0;
}

.app-card-featured {
  background: linear-gradient(145deg, #f4f7ff, #ffffff);
}

.app-symbol {
  display: grid;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: #ffffff;
  background: var(--ink);
  font-size: 1.35rem;
  font-weight: 720;
  box-shadow: 0 12px 28px rgb(11 13 18 / 16%);
  place-items: center;
}

.app-card-featured .app-symbol {
  background: var(--accent);
  box-shadow: 0 12px 28px rgb(37 99 235 / 24%);
}

.app-card-copy {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a4a9b3;
}

.status-soon span {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgb(37 99 235 / 10%);
}

.about-section {
  padding-block: 135px;
  background: var(--ink);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.about-inner .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -50px;
  color: #8eb1ff;
}

.about-inner h2 {
  color: #ffffff;
}

.about-inner > p:last-child {
  margin: 0 0 5px;
  color: #aeb3bd;
  font-size: 1.05rem;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.page-header {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 92%);
}

.product-hero {
  position: relative;
  padding-block: 120px 130px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgb(37 99 235 / 12%), transparent 31%),
    linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
}

.product-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: center;
}

.product-hero h1,
.document-heading h1,
.support-heading h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.7rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 1;
}

.product-lead,
.document-intro,
.support-heading > p:not(.eyebrow, .support-contact) {
  max-width: 710px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 38px;
}

.disabled-action {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  background: #7f8da9;
  font-size: 0.94rem;
  font-weight: 650;
  cursor: not-allowed;
}

.text-action {
  color: var(--accent);
  font-weight: 650;
}

.abstract-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 80%);
  border-radius: 32px;
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 30px 90px rgb(37 99 235 / 14%);
  backdrop-filter: blur(16px);
  transform: rotate(2deg);
}

.panel-bar {
  width: 34%;
  height: 8px;
  margin-bottom: 30px;
  border-radius: 99px;
  background: #cdd8f3;
}

.panel-card {
  min-height: 96px;
  border: 1px solid #edf0f5;
  border-radius: 19px;
  background: #ffffff;
}

.panel-card-large {
  min-height: 190px;
  padding: 28px;
}

.panel-card-large span,
.panel-card-large strong,
.panel-card-large i {
  display: block;
  border-radius: 99px;
  background: #e7ecf7;
}

.panel-card-large span {
  width: 42%;
  height: 9px;
}

.panel-card-large strong {
  width: 68%;
  height: 30px;
  margin-top: 26px;
  background: var(--accent);
  opacity: 0.85;
}

.panel-card-large i {
  width: 54%;
  height: 8px;
  margin-top: 38px;
}

.panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.product-orb {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 340px;
  height: 340px;
  border: 1px solid rgb(37 99 235 / 10%);
  border-radius: 50%;
}

.feature-section {
  padding-block: 125px;
}

.feature-section h2 {
  max-width: 720px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 58px;
}

.feature-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.feature-card h3 {
  max-width: 260px;
  margin-top: 72px;
}

.feature-number,
.topic-grid article > span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.privacy-callout {
  padding-block: 120px;
  color: #ffffff;
  background: var(--ink);
}

.callout-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 90px;
  align-items: start;
}

.privacy-callout .eyebrow {
  color: #8eb1ff;
}

.callout-inner > div:last-child > p:first-child {
  margin-top: 10px;
  color: #c7cbd3;
  font-size: 1.08rem;
}

.callout-inner a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.notice {
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid #343842;
  border-radius: 14px;
  color: #aeb3bd;
  font-size: 0.9rem;
}

.document-main,
.support-main {
  padding-block: 100px 130px;
  background: linear-gradient(180deg, var(--surface-soft), #ffffff 360px);
}

.document-layout {
  max-width: 820px;
}

.document-heading {
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line);
}

.effective-date {
  margin: 28px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.verification-banner {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 42px 0 20px;
  padding: 22px;
  border: 1px solid #f2cfa4;
  border-radius: 16px;
  background: #fff8ee;
  color: #69441c;
}

.verification-banner strong,
.placeholder {
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.document-layout > section {
  padding-block: 42px;
  border-bottom: 1px solid var(--line);
}

.document-layout > section h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.document-layout > section p {
  margin: 16px 0 0;
  color: var(--muted);
}

.document-layout .placeholder {
  display: inline-block;
  padding: 8px 11px;
  border-radius: 8px;
  color: #69441c;
  background: #fff3df;
  font-weight: 750;
}

.support-heading {
  max-width: 860px;
}

.support-contact {
  display: inline-block;
  margin: 34px 0 0;
  padding: 14px 18px;
  border: 1px solid #f2cfa4;
  border-radius: 12px;
  color: #69441c;
  background: #fff8ee;
}

.support-topics {
  padding-top: 100px;
}

.support-topics > h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.topic-grid article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.topic-grid h3 {
  max-width: 390px;
  margin-top: 45px;
}

.topic-grid a {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 650;
}

.support-contact a {
  color: inherit;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-facts {
  padding-top: 100px;
}

.support-facts > h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.support-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.support-facts-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.support-facts-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.product-hero-visual {
  padding-block: 90px 110px;
}

.hero-screenshot {
  position: relative;
  margin: 0;
}

.hero-screenshot::before {
  position: absolute;
  inset: 12% -12%;
  border-radius: 50%;
  background: rgb(37 99 235 / 12%);
  filter: blur(55px);
  content: "";
}

.device-frame {
  position: relative;
  width: min(100%, 350px);
  margin-inline: auto;
  padding: 9px;
  border: 1px solid rgb(15 23 42 / 15%);
  border-radius: 38px;
  background: #15171c;
  box-shadow: 0 36px 90px rgb(15 23 42 / 24%);
  transform: rotate(2deg);
}

.device-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 29px;
}

.product-benefits {
  padding-bottom: 145px;
}

.product-benefits h2 {
  max-width: 820px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.benefit-grid article {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
}

.benefit-grid h3 {
  margin-bottom: 18px;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
}

.showcase-section,
.story-section,
.release-cta {
  padding-block: 125px;
}

.showcase-section {
  background: var(--surface-soft);
}

.showcase-heading {
  max-width: 780px;
}

.showcase-heading > p:last-child,
.story-copy > p:not(.eyebrow),
.release-cta-inner > div:first-child > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  margin-top: 64px;
}

.screenshot-card {
  margin: 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgb(15 23 42 / 9%);
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 19px;
}

.screenshot-card figcaption {
  padding: 15px 10px 7px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.screenshot-grid-overview .screenshot-card:nth-child(2) {
  margin-top: 55px;
}

.screenshot-grid-overview .screenshot-card:nth-child(3) {
  margin-top: 110px;
}

.gallery-note {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.story-section-soft {
  background: linear-gradient(145deg, #f4f7ff, #ffffff);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.72fr);
  gap: 95px;
  align-items: center;
}

.story-grid-reverse {
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
}

.story-copy h2 {
  max-width: 680px;
}

.story-copy .text-action {
  display: inline-block;
  margin-top: 28px;
}

.screenshot-card-focus {
  width: min(100%, 430px);
  justify-self: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

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

.story-section-dark {
  color: #ffffff;
  background: var(--ink);
}

.story-section-dark .eyebrow {
  color: #8eb1ff;
}

.story-section-dark .showcase-heading > p:last-child {
  color: #b7bdc7;
}

.story-section-dark .screenshot-card {
  border-color: #323640;
  background: #20232a;
}

.story-section-dark .screenshot-card figcaption {
  color: #b7bdc7;
}

.reminder-grid .screenshot-card:nth-child(2) {
  margin-top: 60px;
}

.release-cta {
  background: linear-gradient(135deg, #f4f7ff, #ffffff 65%);
}

.release-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.release-actions {
  display: grid;
  justify-items: start;
  gap: 12px;
  min-width: 220px;
}

.release-actions a {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 650;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 116px;
}

.footer-inner p,
.footer-inner nav a {
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 820px) {
  .hero {
    min-height: 690px;
  }

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

  .app-card {
    min-height: 260px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-inner .eyebrow {
    margin-bottom: -8px;
  }

  .product-hero-grid,
  .callout-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .abstract-panel {
    max-width: 520px;
  }

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

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

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

  .story-grid,
  .story-grid-reverse,
  .release-cta-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .release-actions {
    grid-template-columns: repeat(2, max-content);
  }

  .feature-card {
    min-height: 190px;
  }

  .feature-card h3 {
    margin-top: 48px;
  }
}

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

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

  .header-actions {
    gap: 13px;
  }

  .header-actions > nav:first-child a:first-child {
    display: none;
  }

  .language-switcher {
    padding-left: 13px;
  }

  nav {
    gap: 18px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding-block: 125px 80px;
  }

  .apps-section,
  .about-section {
    padding-block: 88px;
  }

  .product-hero,
  .feature-section,
  .privacy-callout,
  .document-main,
  .support-main {
    padding-block: 80px;
  }

  .product-hero h1,
  .document-heading h1,
  .support-heading h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .abstract-panel {
    padding: 18px;
    border-radius: 24px;
  }

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

  .support-topics {
    padding-top: 75px;
  }

  .support-facts {
    padding-top: 75px;
  }

  .product-hero-visual,
  .showcase-section,
  .story-section,
  .release-cta {
    padding-block: 78px;
  }

  .benefit-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: auto;
  }

  .screenshot-grid-overview .screenshot-card:nth-child(2),
  .screenshot-grid-overview .screenshot-card:nth-child(3),
  .reminder-grid .screenshot-card:nth-child(2) {
    margin-top: 0;
  }

  .release-actions {
    grid-template-columns: 1fr;
  }

  .app-card {
    min-height: 235px;
    padding: 24px;
    border-radius: var(--radius-md);
  }

  .app-card-copy {
    right: 24px;
    bottom: 23px;
    left: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .footer-inner p {
    margin: 0;
  }
}

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

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