@font-face {
  font-family: "Gaoel";
  src: url("/assets/gaoel.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #0a0c0f;
  --muted: #69717c;
  --line: #e6e9ec;
  --surface: #f4f6f7;
  --surface-blue: #eef7f9;
  --cyan: #0aa9d4;
  --cyan-dark: #006f92;
  --dark: #090b0e;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: #fff;
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(calc(-100% - 24px));
  transition: transform 160ms ease;
}

.skip-link:focus {
  outline: 3px solid rgba(10, 169, 212, 0.38);
  outline-offset: 3px;
  transform: translateY(0);
}

.shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(10, 12, 15, 0.06);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 78px;
}

.brand {
  justify-self: start;
}

.wordmark {
  display: inline-block;
  font-family: "Gaoel", sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.015em;
}

.brand {
  line-height: 0;
  text-decoration: none;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav nav a,
.nav-action {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.nav-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
}

.language-select {
  width: 58px;
  min-height: 44px;
  padding: 0 30px 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #555c66;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, #747b84 50%), linear-gradient(135deg, #747b84 50%, transparent 50%);
  background-position: calc(100% - 14px) 19px, calc(100% - 10px) 19px;
  background-repeat: no-repeat;
  background-size: 4px 4px, 4px 4px;
  font: 600 10px/1 Montserrat, sans-serif;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.language-select:focus-visible,
.brand:focus-visible,
.nav nav a:focus-visible,
.nav-action:focus-visible,
.primary:focus-visible,
.secondary:focus-visible,
.closing a:focus-visible,
footer a:focus-visible,
.screens:focus-visible {
  outline: 3px solid rgba(10, 169, 212, 0.3);
  outline-offset: 3px;
}

.nav nav a {
  color: #555c66;
  transition: color 180ms ease;
}

.brand,
.nav nav a,
footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

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

.nav-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  transition: transform 180ms ease, background 180ms ease;
}

.nav-action:hover,
.primary:hover {
  transform: translateY(-1px);
  background: #22262b;
}

.hero {
  position: relative;
  padding-block: 54px 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(50px, 6vw, 84px);
  min-height: 630px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.kicker {
  margin: 0 0 20px;
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.18em;
}

.hero h1,
.statement h2,
.section-head h2,
.ai h2,
.ecosystem h2,
.compatibility h2,
.technology h2,
.closing h2 {
  margin: 0;
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: -0.067em;
}

.hero h1 {
  max-width: none;
  font-size: clamp(58px, 5vw, 72px);
}

.hero h1 span {
  display: inline-block;
  white-space: nowrap;
  color: #858b94;
}

html:not([lang="tr"]) .hero h1 span {
  white-space: normal;
}

.hero-copy {
  max-width: 510px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

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

.primary,
.secondary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
  touch-action: manipulation;
}

.primary {
  color: #fff;
  background: var(--ink);
}

.secondary {
  color: var(--ink);
  background: #eff1f3;
}

.secondary:hover {
  background: #e5e8eb;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-signals li {
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  color: #68707a;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
}

.hero-signals li + li::before {
  width: 3px;
  height: 3px;
  margin-inline: 12px;
  border-radius: 50%;
  background: #b9bec5;
  content: "";
}

.product-visual {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.08;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 30, 0.06);
  border-radius: 42px;
  background:
    radial-gradient(circle at 52% 34%, rgba(255, 255, 255, 0.98) 0 22%, rgba(241, 249, 251, 0.92) 54%, rgba(232, 239, 242, 0.98) 100%);
  box-shadow: 0 34px 80px rgba(29, 39, 46, 0.11);
  isolation: isolate;
}

.product-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  content: "";
  pointer-events: none;
}

.product-visual > img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 34px 28px rgba(19, 23, 27, 0.16));
  transform: translate(-50%, -50%) scale(1.1);
}

.halo {
  position: absolute;
  z-index: 0;
  inset: 11% 8% 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 179, 223, 0.17), rgba(0, 179, 223, 0) 68%);
  filter: blur(9px);
}

.status {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(10, 12, 15, 0.07);
  border-radius: 14px;
  color: #20242a;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 45px rgba(20, 29, 36, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 11px;
  font-weight: 500;
}

.status-one {
  top: 18%;
  left: 5%;
}

.status-two {
  right: 5%;
  bottom: 27%;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39c977;
  box-shadow: 0 0 0 5px rgba(57, 201, 119, 0.13);
}

.status small {
  padding: 4px 5px;
  border-radius: 5px;
  color: #fff;
  background: #007394;
  font-size: 8px;
  font-weight: 700;
}

.device-caption {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
  color: #626a74;
  font-size: 11px;
  display: none;
}

.device-caption strong {
  color: var(--ink);
  font-size: 13px;
}

.statement {
  padding-block: 112px 100px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.statement > p {
  margin: 0 0 28px;
  color: #68717c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.statement .statement-note {
  max-width: 520px;
  margin: 30px auto 0;
  color: #4e5660;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.025em;
}

.statement h2 {
  font-size: clamp(46px, 5.2vw, 70px);
}

.statement em {
  color: #0085aa;
  font-family: "Gaoel", sans-serif;
  font-size: 0.82em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.015em;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 128px;
}

.pillars article {
  min-width: 0;
  min-height: 250px;
  padding: 26px 28px 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #fafbfb);
}

.pillars b {
  color: var(--cyan-dark);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.pillars h3 {
  margin: 64px 0 13px;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.pillars p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.experience {
  padding-block: 122px 132px;
  background: var(--surface);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 44px;
  align-items: end;
}

.section-head > * {
  min-width: 0;
}

.section-head h2 {
  max-width: 880px;
  font-size: clamp(46px, 4.2vw, 58px);
}

.section-head > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.screens {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 64px;
}

.screens article {
  min-width: 0;
}

.phone {
  padding: 8px;
  border-radius: 31px;
  background: #12151a;
  box-shadow: 0 25px 50px rgba(22, 27, 33, 0.13);
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 1384;
  border-radius: 24px;
  object-fit: cover;
}

.screens span {
  display: block;
  margin-top: 19px;
  font-size: 15px;
  font-weight: 650;
}

.screens small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.feature-tag {
  display: inline-block;
  margin-top: 9px;
  padding: 5px 7px;
  border-radius: 999px;
  color: #555e69;
  background: #e5e9ec;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.ai {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(42px, 5vw, 64px);
  align-items: center;
  margin-block: 118px;
  padding: clamp(56px, 6vw, 82px);
  border: 1px solid #dbecef;
  border-radius: 46px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.96), transparent 34%),
    var(--surface-blue);
}

.ai > * {
  min-width: 0;
}

.ai h2 {
  font-size: clamp(42px, 4.2vw, 54px);
}

.ai h2 span {
  color: #737d88;
}

.ai-copy > p:not(.kicker) {
  max-width: 450px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.conversation {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 32px;
  border: 1px solid rgba(20, 27, 34, 0.06);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 60px rgba(23, 39, 47, 0.08);
  backdrop-filter: blur(12px);
}

.example-label {
  align-self: flex-start;
  margin: 0 0 3px;
  color: var(--cyan-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.bubble {
  max-width: 82%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.52;
}

.bubble.user {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  color: #fff;
  background: #11151a;
}

.bubble.xensolo {
  border: 1px solid rgba(20, 27, 34, 0.06);
  border-bottom-left-radius: 5px;
  background: #fff;
}

.wordmark-small {
  display: block;
  font-size: 15px;
}

.bubble.xensolo p {
  margin: 8px 0 0;
}

.ecosystem {
  padding-block: 124px;
  color: #fff;
  background:
    radial-gradient(circle at 75% 8%, rgba(8, 146, 184, 0.12), transparent 30%),
    var(--dark);
}

.ecosystem .kicker {
  color: #43c6e8;
}

.ecosystem-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 60px;
  align-items: end;
}

.ecosystem-heading > * {
  min-width: 0;
}

.ecosystem h2 {
  font-size: clamp(50px, 6vw, 82px);
}

.ecosystem h2 span {
  color: #747a83;
}

.ecosystem-heading > p {
  margin: 0 0 5px;
  color: #8e959f;
  font-size: 14px;
  line-height: 1.7;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 22px;
  margin-top: 68px;
}

.roadmap-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid #24282e;
  border-radius: 28px;
  background: #101318;
}

.platform-visual {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: #171b21;
}

.platform-visual-wide {
  aspect-ratio: 16 / 9;
}

.platform-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-visual-wide img {
  object-position: center 44%;
}

.platform-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 24px 4px 5px;
}

.platform-options > div {
  min-width: 0;
  padding: 0 22px;
}

.platform-options > div + div {
  border-left: 1px solid #2b3037;
}

.find-my-card .platform-visual {
  margin-bottom: 24px;
}

.find-my-card > .platform-title,
.find-my-card > p {
  margin-inline: 5px;
}

.platform-title {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  justify-content: space-between;
}

.platform-title strong {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.platform-title span {
  padding: 7px 9px;
  border-radius: 999px;
  color: #aeb4bc;
  background: #20242a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.roadmap-grid article p {
  margin-block: 12px 2px;
  color: #8f969f;
  font-size: 12px;
  line-height: 1.65;
}

.disclaimer {
  display: block;
  margin-top: 22px;
  color: #676e77;
  font-size: 10px;
  line-height: 1.6;
}

.compatibility {
  padding-block: 126px;
  background: var(--surface);
}

.compatibility-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: start;
}

.compatibility-grid > * {
  min-width: 0;
}

.compatibility h2 {
  font-size: clamp(46px, 5vw, 68px);
}

.compatibility h2 span {
  display: block;
  max-width: 100%;
  color: #858b94;
  overflow-wrap: anywhere;
  white-space: normal;
}

.compatibility-copy > p:not(.kicker) {
  max-width: 430px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.compatibility-source {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  margin-top: 28px;
  padding: 0 16px;
  border: 1px solid #dfe3e6;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.compatibility-source:hover {
  border-color: #cbd1d6;
  background: #fff;
}

.compatibility-source span {
  color: #646b74;
}

.compatibility-source strong {
  font-size: 11px;
  font-weight: 700;
}

.brand-panel {
  padding: 26px 28px 24px;
  border: 1px solid #e0e4e7;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(23, 31, 38, 0.06);
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-list li {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 43px;
  align-items: center;
  padding: 8px 9px 8px 16px;
  border-bottom: 1px solid #edf0f2;
  color: #30363d;
  font-size: 10px;
  font-weight: 550;
  line-height: 1.35;
}

.brand-list li::before {
  position: absolute;
  left: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.compatibility-note {
  margin: 22px 2px 0;
  color: #69717c;
  font-size: 10px;
  line-height: 1.65;
}

.technology {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(48px, 6vw, 76px);
  align-items: start;
  padding-block: 126px;
}

.technology > * {
  min-width: 0;
}

.technology h2 {
  font-size: clamp(46px, 5vw, 68px);
}

.technology h2 .dimensions {
  display: inline-block;
  margin-top: 0.18em;
  color: var(--muted);
  font-size: clamp(16px, 0.38em, 24px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.technology dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.technology dl div {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 3.5vw, 48px);
  align-items: baseline;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.technology dt {
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 650;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.technology dd {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@media (min-width: 1024px) {
  .technology dd {
    overflow-wrap: normal;
    white-space: nowrap;
  }
}

@media (min-width: 1024px) and (max-width: 1099px) {
  .technology dd {
    font-size: 11px;
  }
}

.closing {
  padding-block: 126px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.wordmark-large {
  margin: 0 0 46px;
  font-size: 38px;
}

.closing h2 {
  margin-bottom: 38px;
  font-size: clamp(44px, 5.2vw, 66px);
}

footer {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: #666d76;
  font-size: 11px;
}

footer a {
  text-decoration: none;
}

@media (min-width: 761px) and (max-width: 1199px) {
  .section-head {
    display: block;
  }

  .section-head > p {
    max-width: 520px;
    margin-top: 26px;
  }

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

@media (max-width: 1023px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(52px, 6.8vw, 68px);
  }

  .screens {
    display: flex;
    width: calc(100% - 32px);
    max-width: none;
    gap: 16px;
    overflow-x: auto;
    padding: 0 0 30px;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .screens::-webkit-scrollbar {
    display: none;
  }

  .screens article {
    flex: 0 0 min(40vw, 290px);
    scroll-snap-align: start;
  }

  .ai {
    gap: 46px;
  }

  .roadmap-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(260px, 1fr);
  }

  .brand-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shell {
    width: calc(100% - 32px);
  }

  .site-header {
    position: relative;
  }

  .nav {
    grid-template-columns: 1fr auto;
    height: 68px;
  }

  .nav-tools {
    gap: 6px;
  }

  .language-select {
    width: 54px;
    min-height: 44px;
    padding-right: 25px;
    padding-left: 10px;
    background-position: calc(100% - 12px) 19px, calc(100% - 8px) 19px;
    font-size: 9px;
  }

  .wordmark {
    font-size: 22px;
  }

  .nav nav {
    display: none;
  }

  .nav-action {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 11px;
  }

  .hero {
    padding-block: 46px 74px;
  }

  .hero-grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 42px;
    align-items: stretch;
  }

  .kicker {
    margin-bottom: 16px;
    font-size: 9px;
    letter-spacing: 0.15em;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 54px);
    letter-spacing: -0.06em;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-copy {
    margin-top: 23px;
    font-size: 15px;
    line-height: 1.62;
  }

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

  .primary,
  .secondary {
    min-height: 48px;
    padding-inline: 19px;
    font-size: 12px;
  }

  .hero-signals {
    gap: 0;
    margin-top: 22px;
  }

  .product-visual {
    aspect-ratio: 1.08;
    border-radius: 28px;
  }

  .product-visual > img {
    transform: translate(-50%, -50%) scale(0.98);
  }

  .status {
    padding: 9px 10px;
    border-radius: 11px;
    font-size: 9px;
  }

  .status-one {
    top: 12%;
    left: 4%;
  }

  .status-two {
    right: 4%;
    bottom: 20%;
  }

  .device-caption {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .statement {
    padding-block: 86px 78px;
  }

  .statement > p {
    margin-bottom: 22px;
    font-size: 8px;
  }

  .statement .statement-note {
    margin-top: 24px;
    font-size: 16px;
  }

  .statement h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 86px;
  }

  .pillars article {
    min-height: 0;
    padding: 22px;
    border-radius: 20px;
  }

  .pillars h3 {
    margin-top: 38px;
    font-size: 21px;
  }

  .experience {
    padding-block: 80px 84px;
  }

  .section-head {
    display: block;
  }

  .section-head h2 {
    max-width: 13ch;
    font-size: clamp(34px, 9.8vw, 44px);
    line-height: 0.99;
    text-wrap: balance;
  }

  .technology h2,
  .closing h2 {
    text-wrap: balance;
  }

  .section-head > p {
    max-width: 330px;
    margin-top: 24px;
    font-size: 13px;
  }

  .screens {
    width: calc(100% - 32px);
    gap: 14px;
    margin-top: 38px;
  }

  .screens article {
    flex-basis: min(82vw, 300px);
  }

  .phone {
    padding: 7px;
    border-radius: 32px;
  }

  .phone img {
    border-radius: 25px;
  }

  .ai {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-block: 78px;
    padding: 38px 22px 22px;
    border-radius: 28px;
  }

  .ai h2 {
    font-size: clamp(32px, 9.5vw, 43px);
    line-height: 0.99;
    overflow-wrap: anywhere;
  }

  .ai-copy > p:not(.kicker) {
    margin-top: 22px;
    font-size: 13px;
  }

  .conversation {
    padding: 17px;
    border-radius: 22px;
  }

  .bubble {
    max-width: 88%;
    font-size: 12px;
  }

  .ecosystem {
    padding-block: 80px;
  }

  .ecosystem-heading {
    display: block;
  }

  .ecosystem h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .ecosystem-heading > p {
    max-width: 340px;
    margin-top: 24px;
    font-size: 13px;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 42px;
  }

  .roadmap-grid article {
    padding: 12px;
    border-radius: 22px;
  }

  .platform-visual {
    border-radius: 15px;
  }

  .platform-options {
    grid-template-columns: 1fr;
    padding: 12px 5px 4px;
  }

  .platform-options > div {
    padding: 16px 6px;
  }

  .platform-options > div + div {
    border-top: 1px solid #2b3037;
    border-left: 0;
  }

  .find-my-card .platform-visual {
    margin-bottom: 20px;
  }

  .find-my-card > .platform-title,
  .find-my-card > p {
    margin-inline: 6px;
  }

  .compatibility {
    padding-block: 82px;
  }

  .compatibility-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .compatibility h2 {
    font-size: clamp(36px, 10vw, 48px);
    text-wrap: balance;
  }

  .compatibility h2 br {
    display: none;
  }

  .compatibility-copy > p:not(.kicker) {
    margin-top: 22px;
    font-size: 13px;
  }

  .compatibility-source {
    margin-top: 22px;
  }

  .brand-panel {
    padding: 18px 18px 20px;
    border-radius: 22px;
  }

  .brand-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-list li {
    min-height: 41px;
    padding-right: 5px;
    font-size: 9px;
  }

  .technology {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 82px;
  }

  .technology h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .technology dl div {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    padding-block: 18px;
  }

  .technology dt {
    font-size: 17px;
  }

  .closing {
    padding-block: 82px;
  }

  .wordmark-large {
    margin-bottom: 38px;
    font-size: 32px;
  }

  .closing h2 {
    margin-bottom: 32px;
    font-size: clamp(36px, 10vw, 48px);
  }

  footer {
    min-height: 0;
    flex-wrap: wrap;
    padding-block: 25px;
    font-size: 10px;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 39px;
  }

  .hero-actions {
    display: flex;
  }

  .primary,
  .secondary {
    padding-inline: 12px;
    white-space: nowrap;
  }

  .hero-signals {
    gap: 0;
  }

  .hero-signals li {
    padding: 0;
    font-size: 9px;
  }

  .hero-signals li + li::before {
    margin-inline: 9px;
  }

  .closing h2 {
    font-size: 31px;
    letter-spacing: -0.07em;
  }

  .technology dl div {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  .technology dt {
    font-size: 14px;
  }

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

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

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

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