:root {
  color-scheme: dark;
  --bg: #0d1112;
  --surface: #151a1c;
  --surface-raised: #1b2123;
  --ink: #f4f2ec;
  --muted: #abb2b2;
  --line: #2b3234;
  --teal: #2aa8ad;
  --teal-strong: #38bcc0;
  --coral: #e86f55;
  --paper: #f0eee7;
  --paper-ink: #15191a;
  --paper-muted: #606969;
  --paper-line: #d1d0c9;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", "Noto Sans SC", "Noto Sans TC", "Noto Sans KR", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
summary {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--paper-ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

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

.locale-suggestion {
  position: relative;
  z-index: 110;
  border-bottom: 1px solid #254244;
  background: #10282a;
}

.locale-suggestion[hidden] {
  display: none;
}

.locale-suggestion__inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #dce8e8;
  font-size: 14px;
  text-align: center;
}

.locale-suggestion a,
.locale-suggestion button {
  border: 0;
  background: none;
  color: #7fd2d5;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(13, 17, 18, 0.94);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 740;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.header-actions,
.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 20px;
  margin-left: auto;
}

.desktop-nav a {
  color: #c3c9c8;
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
}

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

.header-actions {
  gap: 12px;
}

.language-menu,
.mobile-menu {
  position: relative;
}

.language-menu summary,
.mobile-menu summary {
  list-style: none;
  cursor: pointer;
}

.language-menu summary::-webkit-details-marker,
.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d4d8d7;
  font-size: 13px;
  font-weight: 650;
}

.language-menu[open] summary,
.mobile-menu[open] summary {
  border-color: #4a5557;
}

.language-list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #171d1f;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.language-list a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: #d8dddc;
  font-size: 14px;
  text-decoration: none;
}

.language-list a:hover,
.language-list a[aria-current="page"] {
  background: #222a2c;
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-cta {
  min-height: 40px;
  padding-inline: 16px;
  background: var(--teal);
  color: #061718;
  font-size: 14px;
}

.header-cta:hover,
.button--primary:hover {
  background: var(--teal-strong);
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(620px, 1.2fr);
  align-items: center;
  gap: clamp(36px, 4vw, 58px);
  padding-top: 78px;
  padding-bottom: 88px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-strong);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.story-copy h3,
.platform-copy h2,
.faq-heading h2,
.final-cta h2 {
  text-wrap: balance;
}

.hero h1 {
  width: calc(100% + 48px);
  max-width: 10.5em;
  margin: 0;
  font-size: clamp(50px, 3.8vw, 58px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 35em;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.75;
}

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

.button--primary {
  background: var(--teal);
  color: #061718;
}

.button--secondary {
  border-color: #3a4345;
  color: var(--ink);
}

.button--secondary:hover {
  border-color: #778183;
  background: #171d1f;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: #7f8989;
  font-size: 13px;
}

.hero-note span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 18px 3px 0;
  border-radius: 50%;
  background: #596263;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-main {
  width: min(calc(100% + 90px), 790px);
  margin-right: -90px;
  overflow: hidden;
  border: 1px solid #384143;
  border-radius: 18px;
  background: #090b0c;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.46);
}

.hero-main img {
  width: 100%;
  height: auto;
}

.hero-stage--tablet .hero-main {
  width: min(74%, 590px);
  margin-right: 0;
  max-height: 610px;
}

.hero-stage--tablet .hero-main img {
  height: 610px;
  object-fit: cover;
  object-position: top;
}

.hero-phone {
  position: absolute;
  bottom: -225px;
  left: clamp(-28px, -3vw, -12px);
  width: clamp(154px, 20vw, 212px);
  overflow: hidden;
  border: 1px solid #4b5557;
  border-radius: 30px;
  background: #050606;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.hero-phone img {
  width: 100%;
}

.compatibility {
  background: var(--paper);
  color: var(--paper-ink);
}

.compatibility-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) 1.3fr;
  align-items: center;
  gap: 48px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.compatibility-copy h2 {
  margin: 0 0 6px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.compatibility-copy p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 14px;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 20px;
  color: #3d4748;
  font-size: 14px;
  font-weight: 720;
}

.source-list span {
  white-space: nowrap;
}

.source-showcase {
  padding-top: 112px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line);
  background: #101617;
  color: var(--ink);
}

.source-heading {
  max-width: 880px;
  margin-bottom: 58px;
}

.source-heading p:not(.eyebrow) {
  color: var(--muted);
}

.source-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.source-focus-item {
  min-height: 320px;
  padding: 34px clamp(24px, 3vw, 42px) 40px 0;
}

.source-focus-item + .source-focus-item {
  padding-left: clamp(24px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.source-focus-item span,
.signature-item span {
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.source-focus-item h3 {
  margin: 44px 0 0;
  font-size: clamp(25px, 2.5vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.source-focus-item p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.source-more {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1.4fr);
  gap: clamp(42px, 8vw, 120px);
  padding-top: 40px;
}

.source-more h3 {
  max-width: 18em;
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.source-more p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.experience {
  padding-top: 112px;
  padding-bottom: 120px;
  background: var(--paper);
  color: var(--paper-ink);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 82px;
}

.section-heading h2,
.platform-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 790;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.platform-copy p,
.faq-heading p,
.final-cta p {
  max-width: 38em;
  margin: 22px 0 0;
  color: var(--paper-muted);
  font-size: 17px;
  line-height: 1.75;
}

.story-list {
  display: grid;
  gap: 0;
}

.story-row {
  min-height: 630px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.58fr);
  align-items: center;
  gap: clamp(54px, 9vw, 140px);
  padding: 78px 0;
  border-top: 1px solid var(--paper-line);
}

.story-row:nth-child(even) {
  grid-template-columns: minmax(340px, 0.58fr) minmax(0, 0.82fr);
}

.story-row:nth-child(even) .story-copy {
  order: 2;
}

.story-index {
  display: block;
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.story-copy h3 {
  max-width: 12em;
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.story-copy p {
  max-width: 35em;
  margin: 20px 0 0;
  color: var(--paper-muted);
  font-size: 16px;
  line-height: 1.8;
}

.story-media {
  justify-self: center;
  width: min(100%, 350px);
  overflow: hidden;
  border: 1px solid #24292a;
  border-radius: 36px;
  background: #050606;
  box-shadow: 0 25px 62px rgba(29, 33, 34, 0.22);
}

.story-media img {
  width: 100%;
}

.feature-catalog {
  padding-top: 112px;
  padding-bottom: 120px;
  border-top: 1px solid var(--paper-line);
  background: var(--paper);
  color: var(--paper-ink);
}

.feature-heading {
  margin-bottom: 54px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(42px, 7vw, 96px);
  border-top: 1px solid var(--paper-line);
}

.feature-group {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: start;
  gap: 0 18px;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--paper-line);
}

.feature-index {
  grid-row: 1 / span 2;
  padding-top: 4px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.feature-group h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.feature-group ul {
  margin: 18px 0 0;
  padding: 0;
  color: var(--paper-muted);
  list-style: none;
}

.feature-group li {
  position: relative;
  padding-left: 16px;
}

.feature-group li + li {
  margin-top: 11px;
}

.feature-group li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.signature-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1.2fr);
  gap: clamp(42px, 8vw, 120px);
  margin-top: 96px;
  padding-top: 54px;
  border-top: 1px solid var(--paper-line);
}

.signature-heading .eyebrow {
  grid-column: 1;
}

.signature-heading h3 {
  grid-column: 1;
  max-width: 12em;
  margin: -4px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 790;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.signature-heading > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 38em;
  margin: 0;
  color: var(--paper-muted);
  font-size: 17px;
  line-height: 1.75;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(28px, 5vw, 66px);
  margin-top: 52px;
  border-top: 1px solid var(--paper-line);
}

.signature-item {
  min-height: 250px;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--paper-line);
}

.signature-item h4 {
  margin: 30px 0 0;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.signature-item p {
  margin: 12px 0 0;
  color: var(--paper-muted);
  font-size: 15px;
  line-height: 1.75;
}

.platforms {
  padding-top: 116px;
  padding-bottom: 120px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.platform-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.platform-copy p {
  color: var(--muted);
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 30px;
  color: #d7dcdb;
  font-size: 14px;
  font-weight: 720;
}

.platform-visual {
  overflow: hidden;
  border: 1px solid #364042;
  border-radius: var(--radius-md);
  background: #050606;
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.42);
}

.platform-visual img {
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  object-position: top;
}

.format-band {
  margin-top: 82px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.format-band h3 {
  margin: 0 0 14px;
  font-size: 17px;
}

.format-band p {
  margin: 0;
  color: #9ea7a6;
  font-size: 14px;
  word-spacing: 0.5em;
}

.carplay-showcase {
  padding-top: 108px;
  padding-bottom: 112px;
  border-top: 1px solid #315052;
  background: #10282a;
}

.carplay-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.1fr);
  gap: clamp(54px, 9vw, 130px);
}

.carplay-heading h2 {
  max-width: 10em;
  margin: 0;
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 790;
  letter-spacing: -0.05em;
  line-height: 1.07;
  text-wrap: balance;
}

.carplay-heading > p:not(.eyebrow) {
  max-width: 36em;
  margin: 22px 0 0;
  color: #b9cbcb;
  line-height: 1.8;
}

.carplay-list {
  border-top: 1px solid #315052;
}

.carplay-list article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  padding: 26px 0 28px;
  border-bottom: 1px solid #315052;
}

.carplay-list span {
  padding-top: 3px;
  color: #77d2d5;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.carplay-list h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.carplay-list p {
  margin: 8px 0 0;
  color: #b9cbcb;
  font-size: 14px;
  line-height: 1.7;
}

.tv-showcase {
  padding-top: 116px;
  padding-bottom: 124px;
  border-top: 1px solid var(--line);
  background: #0a0e0f;
}

.tv-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(44px, 8vw, 120px);
  margin-bottom: 58px;
}

.tv-heading h2 {
  max-width: 10em;
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 790;
  letter-spacing: -0.05em;
  line-height: 1.06;
  text-wrap: balance;
}

.tv-heading > p {
  max-width: 38em;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.tv-primary,
.tv-secondary {
  margin: 0;
  overflow: hidden;
  border: 1px solid #354043;
  border-radius: var(--radius-md);
  background: #050606;
  box-shadow: 0 32px 78px rgba(0, 0, 0, 0.38);
}

.tv-primary img,
.tv-secondary img {
  width: 100%;
}

.tv-primary figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: #899291;
  font-size: 13px;
}

.tv-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(40px, 7vw, 94px);
  margin-top: 72px;
}

.tv-feature-list {
  border-top: 1px solid var(--line);
}

.tv-feature-list article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0 14px;
  padding: 22px 0 24px;
  border-bottom: 1px solid var(--line);
}

.tv-feature-list span {
  grid-row: 1 / span 2;
  padding-top: 3px;
  color: var(--teal-strong);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.tv-feature-list h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.tv-feature-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq {
  padding-top: 110px;
  padding-bottom: 118px;
  background: var(--paper);
  color: var(--paper-ink);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 120px);
}

.faq-heading p {
  font-size: 15px;
}

.faq-list {
  border-top: 1px solid var(--paper-line);
}

.faq-list details {
  border-bottom: 1px solid var(--paper-line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--paper-ink);
  font-size: 18px;
  font-weight: 720;
  cursor: pointer;
}

.faq-list summary::after {
  content: attr(data-open-label);
  color: #687172;
  font-size: 13px;
  font-weight: 650;
}

.faq-list details[open] summary::after {
  content: attr(data-close-label);
}

.faq-list details p {
  max-width: 50em;
  margin: -4px 0 26px;
  color: var(--paper-muted);
  line-height: 1.8;
}

.privacy-note {
  margin-top: 50px;
  padding: 24px 0 0;
  border-top: 1px solid var(--paper-line);
}

.privacy-note h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.privacy-note p {
  max-width: 54em;
  margin: 0;
  color: var(--paper-muted);
  font-size: 14px;
}

.privacy-note > a {
  display: inline-block;
  margin-top: 12px;
  color: #0d7478;
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 3px;
}

.policy-language {
  display: flex;
  gap: 18px;
  margin-left: auto;
}

.policy-language a {
  color: #c8cecd;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

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

.policy-main {
  padding-top: 92px;
  padding-bottom: 120px;
}

.policy-hero {
  width: min(100%, 900px);
  margin-bottom: 76px;
}

.policy-hero h1 {
  margin: 12px 0 22px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.policy-lead {
  max-width: 760px;
  color: #c4cac9;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.policy-updated {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 800px);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.policy-toc strong {
  margin-bottom: 6px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-toc a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

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

.policy-copy section {
  scroll-margin-top: 110px;
  margin-bottom: 58px;
}

.policy-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.policy-copy h3 {
  margin: 34px 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.policy-copy p,
.policy-copy li {
  color: #c1c7c6;
}

.policy-copy p {
  margin: 0 0 18px;
}

.policy-copy ul {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding-left: 22px;
}

.policy-copy strong {
  color: var(--ink);
}

.policy-copy code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  color: #b7e3e4;
  font-size: 0.9em;
  overflow-wrap: anywhere;
}

.policy-copy a {
  color: #7fd2d5;
  text-underline-offset: 3px;
}

.policy-copy hr {
  margin: 90px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.policy-translation {
  scroll-margin-top: 110px;
}

.policy-translation > h2 {
  margin-top: 10px;
}

.open-source {
  padding-top: 106px;
  padding-bottom: 110px;
  border-top: 1px solid var(--line);
  background: #0a0e0f;
}

.open-source-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 0.9fr);
  align-items: start;
  gap: clamp(54px, 10vw, 150px);
}

.open-source h2 {
  max-width: 10em;
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 790;
  letter-spacing: -0.05em;
  line-height: 1.06;
  text-wrap: balance;
}

.open-source-copy p {
  max-width: 42em;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.open-source-copy .button {
  margin-top: 28px;
}

.open-source-copy code {
  display: block;
  margin-top: 22px;
  color: #7d8988;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.final-cta {
  padding-top: 112px;
  padding-bottom: 116px;
  text-align: center;
}

.final-cta h2 {
  max-width: 12em;
  margin-inline: auto;
}

.final-cta p {
  margin-inline: auto;
  color: var(--muted);
}

.final-cta .button {
  margin-top: 30px;
}

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

.footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-links a {
  color: #c8cecd;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1280px) {
  .hero h1 {
    width: auto;
  }

  .hero-main {
    width: 100%;
    margin-right: 0;
  }
}

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

  .hero {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    width: auto;
  }

  .hero h1 br {
    display: none;
  }

  .hero-stage {
    min-height: auto;
    padding-left: 40px;
  }

  .hero-main {
    width: 100%;
    margin-right: 0;
  }

  .hero-stage--tablet .hero-main {
    width: min(76%, 620px);
  }

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

  .source-list {
    justify-content: flex-start;
  }

  .tv-detail-grid {
    grid-template-columns: 1fr;
  }

  .carplay-layout,
  .open-source-layout {
    grid-template-columns: 1fr;
  }
}

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

  .policy-main {
    padding-top: 64px;
    padding-bottom: 84px;
  }

  .policy-hero {
    margin-bottom: 52px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .policy-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-toc strong {
    grid-column: 1 / -1;
  }

  .policy-copy section {
    margin-bottom: 46px;
  }

  .policy-copy hr {
    margin: 66px 0;
  }

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

  .language-menu,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu > summary {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #d4d8d7;
    font-size: 13px;
    font-weight: 650;
  }

  .mobile-menu__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(290px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #171d1f;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  }

  .mobile-menu__panel > a {
    display: block;
    padding: 9px 8px;
    border-radius: 7px;
    color: #d8dddc;
    text-decoration: none;
  }

  .mobile-menu__panel .language-list {
    position: static;
    width: auto;
    margin-top: 8px;
    padding: 8px 0 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .locale-suggestion__inner {
    min-height: 62px;
    flex-wrap: wrap;
    gap: 3px 12px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero {
    min-height: auto;
    gap: 46px;
    padding-top: 54px;
    padding-bottom: 70px;
  }

  .hero h1 {
    max-width: 12em;
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-stage,
  .hero-stage--tablet {
    padding-left: 18px;
  }

  .hero-stage--tablet .hero-main {
    width: 82%;
    max-height: 520px;
  }

  .hero-stage--tablet .hero-main img {
    height: 520px;
  }

  .hero-phone {
    bottom: -26px;
    left: -4px;
    width: clamp(128px, 35vw, 170px);
    border-radius: 23px;
  }

  .compatibility-inner {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .source-list {
    gap: 7px 14px;
    font-size: 13px;
  }

  .feature-catalog,
  .source-showcase,
  .tv-showcase,
  .carplay-showcase,
  .open-source {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .feature-heading {
    margin-bottom: 38px;
  }

  .feature-grid,
  .source-focus-grid,
  .source-more,
  .signature-heading,
  .signature-grid,
  .tv-heading,
  .tv-detail-grid {
    grid-template-columns: 1fr;
  }

  .source-heading {
    margin-bottom: 38px;
  }

  .source-focus-item {
    min-height: 0;
    padding: 28px 0 32px;
  }

  .source-focus-item + .source-focus-item {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .source-focus-item h3 {
    margin-top: 24px;
  }

  .source-more {
    gap: 18px;
    padding-top: 34px;
  }

  .feature-group {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0 12px;
    padding: 28px 0 30px;
  }

  .signature-heading {
    gap: 18px;
    margin-top: 70px;
    padding-top: 42px;
  }

  .signature-heading .eyebrow,
  .signature-heading h3,
  .signature-heading > p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .signature-heading > p:not(.eyebrow) {
    font-size: 15px;
  }

  .signature-grid {
    margin-top: 38px;
  }

  .signature-item {
    min-height: 0;
  }

  .carplay-layout,
  .open-source-layout {
    gap: 40px;
  }

  .tv-heading {
    align-items: start;
    gap: 24px;
    margin-bottom: 38px;
  }

  .tv-heading > p {
    font-size: 15px;
  }

  .tv-primary,
  .tv-secondary {
    border-radius: 12px;
  }

  .tv-detail-grid {
    gap: 44px;
    margin-top: 48px;
  }

  .experience,
  .platforms,
  .faq,
  .final-cta {
    padding-top: 82px;
    padding-bottom: 86px;
  }

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

  .story-row,
  .story-row:nth-child(even) {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0;
  }

  .story-row:nth-child(even) .story-copy {
    order: 0;
  }

  .story-media {
    width: min(78vw, 330px);
  }

  .platform-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .platform-visual {
    margin-top: 8px;
  }

  .platform-visual img {
    max-height: 580px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .brand span {
    display: none;
  }

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

  .button {
    width: 100%;
  }

  .hero-note {
    display: grid;
    gap: 5px;
  }

  .hero-note span + span::before {
    display: none;
  }
}

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

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