:root {
  color-scheme: light;
  --ink: #111318;
  --ink-soft: #4f5662;
  --ink-muted: #747b86;
  --paper: #f6f7f9;
  --paper-strong: #ffffff;
  --line: rgba(17, 19, 24, 0.1);
  --header-glass: rgba(246, 247, 249, 0.72);
  --header-glass-strong: rgba(246, 247, 249, 0.9);
  --mobile-navigation: rgba(246, 247, 249, 0.98);
  --nav-ink: #3f4651;
  --control-surface: rgba(255, 255, 255, 0.7);
  --card-surface: rgba(255, 255, 255, 0.78);
  --legal-surface: #ffffff;
  --legal-copy: #454c57;
  --legal-note: #757c86;
  --button-primary-background: #111318;
  --button-primary-foreground: #ffffff;
  --button-secondary-background: rgba(255, 255, 255, 0.78);
  --blue: #0878f9;
  --blue-deep: #0757c7;
  --cyan: #43c7f4;
  --violet: #7557ff;
  --green: #7bd35a;
  --shadow-soft: 0 24px 80px rgba(18, 30, 58, 0.12);
  --shadow-card: 0 12px 40px rgba(18, 30, 58, 0.09);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1180px;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f4f7fb;
  --ink-soft: #aeb8c7;
  --ink-muted: #8c97a8;
  --paper: #080a0f;
  --paper-strong: #0e1118;
  --line: rgba(255, 255, 255, 0.11);
  --header-glass: rgba(8, 10, 15, 0.74);
  --header-glass-strong: rgba(8, 10, 15, 0.92);
  --mobile-navigation: rgba(8, 10, 15, 0.98);
  --nav-ink: #c8d0dc;
  --control-surface: rgba(255, 255, 255, 0.07);
  --card-surface: rgba(255, 255, 255, 0.055);
  --legal-surface: #11151d;
  --legal-copy: #b7c0cd;
  --legal-note: #8a95a4;
  --button-primary-background: #f4f7fb;
  --button-primary-foreground: #10131a;
  --button-secondary-background: rgba(255, 255, 255, 0.065);
  --blue: #4da6ff;
  --blue-deep: #79baff;
  --shadow-soft: 0 28px 90px rgba(0, 0, 0, 0.38);
  --shadow-card: 0 16px 48px rgba(0, 0, 0, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  color: #fff;
  background: var(--blue);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--button-primary-foreground);
  background: var(--button-primary-background);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: var(--header-glass);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
  transition:
    border-color 220ms ease,
    background 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: var(--header-glass-strong);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.brand-mark {
  position: relative;
  width: 26px;
  height: 29px;
  display: block;
  flex: 0 0 auto;
  color: currentColor;
}

.brand-stem {
  position: absolute;
  top: 1px;
  left: 2px;
  width: 5px;
  height: 27px;
  border-radius: 999px;
  background: currentColor;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  width: 19px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: 2.5px 50%;
}

.brand-mark::before {
  transform: rotate(-43deg);
}

.brand-mark::after {
  transform: rotate(43deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--nav-ink);
  font-size: 14px;
  font-weight: 550;
}

.nav-links a {
  position: relative;
  padding: 9px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 34px;
  padding: 0 10px !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--control-surface);
}

.language-link::after {
  display: none;
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.theme-toggle {
  position: relative;
  width: 38px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--control-surface);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 240ms ease,
    background 240ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.theme-toggle-icon {
  position: relative;
  width: 13px;
  height: 13px;
  display: block;
  border-radius: 50%;
  color: #f1a900;
  background: currentColor;
  box-shadow:
    0 -7px 0 -5px currentColor,
    0 7px 0 -5px currentColor,
    7px 0 0 -5px currentColor,
    -7px 0 0 -5px currentColor,
    5px 5px 0 -5px currentColor,
    -5px -5px 0 -5px currentColor,
    5px -5px 0 -5px currentColor,
    -5px 5px 0 -5px currentColor;
  transition:
    color 380ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 380ms ease;
}

.theme-toggle-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  top: -4px;
  right: -4px;
  border-radius: 50%;
  background: var(--paper);
  opacity: 0;
  transform: scale(0.2);
  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 240ms ease;
}

:root[data-theme="dark"] .theme-toggle-icon {
  color: #dbe8ff;
  box-shadow: none;
  transform: rotate(-18deg) scale(1.08);
}

:root[data-theme="dark"] .theme-toggle-icon::after {
  opacity: 1;
  transform: scale(0.82);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 20px;
  height: 1.5px;
  display: block;
  border-radius: 3px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  transform: translateY(-6px);
}

.menu-icon::after {
  transform: translateY(6px);
}

.menu-open .menu-icon {
  background: transparent;
}

.menu-open .menu-icon::before {
  transform: rotate(45deg);
}

.menu-open .menu-icon::after {
  transform: rotate(-45deg);
}

main {
  overflow: hidden;
}

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

.hero {
  min-height: 810px;
  padding: 154px 0 96px;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
  align-items: center;
  gap: 46px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 4.6vw, 66px);
  font-weight: 720;
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.hero-secondary {
  color: var(--ink-muted);
}

.hero-copy {
  max-width: 630px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.button-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.015em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--button-primary-foreground);
  background: var(--button-primary-background);
  box-shadow: 0 12px 28px rgba(17, 19, 24, 0.2);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(17, 19, 24, 0.25);
}

.button-secondary {
  border-color: var(--line);
  background: var(--button-secondary-background);
}

.button-arrow {
  font-size: 18px;
  line-height: 1;
}

.hero-visual {
  position: relative;
  min-height: 530px;
}

.orb {
  position: absolute;
  width: 470px;
  height: 470px;
  top: 22px;
  left: 50%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.96) 0 8%, transparent 28%),
    radial-gradient(circle at 70% 20%, rgba(131, 102, 255, 0.85), transparent 32%),
    radial-gradient(circle at 74% 72%, rgba(31, 170, 250, 0.9), transparent 35%),
    radial-gradient(circle at 24% 72%, rgba(126, 221, 99, 0.85), transparent 30%),
    linear-gradient(145deg, #d7e9ff, #dcd7ff 45%, #c9f6f2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 48px 100px rgba(57, 88, 158, 0.18);
  filter: saturate(108%);
  transform: translateX(-50%);
}

.phone {
  position: absolute;
  z-index: 2;
  width: 252px;
  height: 504px;
  top: 4px;
  left: 50%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 48px;
  background: #17191e;
  box-shadow:
    0 35px 80px rgba(21, 29, 50, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translateX(-50%) rotate(4deg);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 39px;
  background:
    radial-gradient(circle at 30% 34%, rgba(117, 87, 255, 0.28), transparent 23%),
    radial-gradient(circle at 76% 65%, rgba(67, 199, 244, 0.35), transparent 25%),
    linear-gradient(155deg, #f9fbff, #e9f3fd);
}

.phone-island {
  position: absolute;
  z-index: 4;
  width: 86px;
  height: 25px;
  top: 10px;
  left: 50%;
  border-radius: 999px;
  background: #101216;
  transform: translateX(-50%);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    linear-gradient(28deg, transparent 47%, rgba(52, 98, 136, 0.13) 48% 50%, transparent 51%),
    linear-gradient(104deg, transparent 47%, rgba(52, 98, 136, 0.1) 48% 50%, transparent 51%);
  background-size: 76px 76px, 92px 92px;
}

.map-water {
  position: absolute;
  width: 220px;
  height: 95px;
  top: 142px;
  right: -74px;
  border-radius: 50%;
  background: rgba(74, 179, 235, 0.35);
  transform: rotate(-28deg);
}

.pin {
  position: absolute;
  z-index: 3;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 50% 50% 50% 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--violet), var(--blue));
  box-shadow: 0 8px 20px rgba(35, 72, 180, 0.25);
  font-size: 12px;
  font-weight: 760;
  transform: rotate(-45deg);
}

.pin span {
  transform: rotate(45deg);
}

.pin-one {
  top: 112px;
  left: 54px;
}

.pin-two {
  top: 214px;
  right: 50px;
  background: linear-gradient(145deg, #ed5d8d, #ff875f);
}

.pin-three {
  top: 290px;
  left: 90px;
  background: linear-gradient(145deg, #4ab65a, #90d34f);
}

.app-preview-card {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 28px;
  left: 14px;
  padding: 16px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 36px rgba(37, 61, 95, 0.13);
  color: #111318;
}

.app-preview-card img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
}

.app-preview-card strong,
.app-preview-card span {
  display: block;
}

.app-preview-card strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.app-preview-card span {
  color: #4f5662;
  font-size: 12px;
  line-height: 1.35;
}

.floating-note {
  position: absolute;
  z-index: 6;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 17px;
  background: var(--control-surface);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.floating-note.top {
  top: 46px;
  right: -8px;
  transform: rotate(3deg);
}

.floating-note.bottom {
  bottom: 54px;
  left: -24px;
  transform: rotate(-3deg);
}

.section {
  padding: 120px 0;
}

.section-compact {
  padding: 90px 0;
}

.section-white {
  background: var(--paper-strong);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 8% 10%, rgba(60, 131, 246, 0.25), transparent 30%),
    radial-gradient(circle at 93% 82%, rgba(117, 87, 255, 0.2), transparent 34%),
    #111318;
}

.section-heading {
  max-width: 790px;
  margin: 0 0 55px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 690;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: #74b7ff;
}

.section-title {
  max-width: 100%;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 74px);
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: 0.99;
  hyphens: manual;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.section-intro {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.section-dark .section-intro {
  color: #b8c0ce;
}

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

.fact-card,
.value-card,
.responsibility-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card-surface);
  box-shadow: var(--shadow-card);
}

.fact-card {
  min-height: 220px;
  padding: 28px;
}

.fact-number {
  display: block;
  margin-bottom: 45px;
  color: var(--blue);
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 710;
  letter-spacing: -0.055em;
}

.fact-card h3,
.value-card h3,
.responsibility-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.fact-card p,
.value-card p,
.responsibility-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.company-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 70px;
}

.company-statement {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.06;
}

.company-copy {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.company-copy p {
  margin: 0 0 20px;
}

.company-meta {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.meta-item span,
.meta-item strong {
  display: block;
}

.meta-item span {
  margin-bottom: 6px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meta-item strong {
  font-size: 16px;
  line-height: 1.45;
}

.product-stage {
  padding: clamp(28px, 5vw, 62px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.22);
}

.product-visual {
  min-width: 0;
  display: grid;
  place-items: center;
}

.product-icon {
  width: min(100%, 430px);
  height: auto;
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 30%;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}

.product-label {
  display: inline-flex;
  margin-bottom: 21px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #c4dcff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(48px, 6vw, 82px);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.product-copy > p {
  max-width: 560px;
  margin: 0;
  color: #bec6d2;
  font-size: 19px;
  line-height: 1.58;
}

.product-points {
  margin-top: 34px;
  display: grid;
  gap: 17px;
}

.product-point {
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 18px;
}

.product-point strong {
  color: #fff;
  font-size: 15px;
}

.product-point span {
  color: #aeb7c5;
  font-size: 15px;
  line-height: 1.5;
}

.product-legal-links {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #dceaff;
  font-size: 14px;
  font-weight: 620;
}

.product-legal-links a {
  text-decoration: underline;
  text-decoration-color: rgba(220, 234, 255, 0.38);
  text-underline-offset: 5px;
  transition: text-decoration-color 180ms ease;
}

.product-legal-links a:hover {
  text-decoration-color: currentColor;
}

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

.value-card {
  min-height: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.value-symbol {
  width: 50px;
  height: 50px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--blue-deep);
  background: #e8f2ff;
  font-size: 22px;
  font-weight: 750;
}

.value-card:nth-child(2) .value-symbol {
  color: #5a43d6;
  background: #eeeaff;
}

.value-card:nth-child(3) .value-symbol {
  color: #3b802c;
  background: #ecf9e8;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.responsibility-card {
  min-height: 270px;
  padding: 32px;
}

.responsibility-card.highlight {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.26), transparent 26%),
    linear-gradient(145deg, #0878f9, #6256ea 76%, #7b57ec);
  box-shadow: 0 26px 70px rgba(72, 86, 218, 0.24);
}

.responsibility-card.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.responsibility-card .card-tag {
  display: block;
  margin-bottom: 72px;
  color: inherit;
  font-size: 12px;
  font-weight: 690;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.contact-panel {
  padding: clamp(34px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 8% 12%, rgba(61, 166, 255, 0.38), transparent 31%),
    radial-gradient(circle at 92% 90%, rgba(124, 91, 255, 0.3), transparent 34%),
    #12151b;
  box-shadow: var(--shadow-soft);
}

.contact-panel h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(45px, 6.5vw, 82px);
  letter-spacing: -0.063em;
  line-height: 0.98;
}

.contact-panel p {
  max-width: 610px;
  margin: 24px 0 0;
  color: #b9c2cf;
  font-size: 18px;
  line-height: 1.6;
}

.contact-email {
  width: fit-content;
  margin-top: 14px;
  display: inline-block;
  color: #d9e8ff;
  font-size: 17px;
  font-weight: 620;
  text-decoration: underline;
  text-decoration-color: rgba(217, 232, 255, 0.45);
  text-underline-offset: 5px;
}

.contact-email:hover {
  text-decoration-color: currentColor;
}

.contact-panel .button {
  color: #111318;
  background: #fff;
  white-space: nowrap;
}

.site-footer {
  padding: 34px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px;
}

.footer-company {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.footer-company strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 13px;
}

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

.legal-main {
  min-height: calc(100vh - 170px);
  padding: 145px 0 90px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 80px;
}

.legal-heading {
  position: sticky;
  top: 120px;
}

.legal-heading h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: -0.062em;
  line-height: 0.95;
  hyphens: auto;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.legal-heading p {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.legal-language-switcher {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legal-language-switcher a {
  min-width: 40px;
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--control-surface);
  font-size: 13px;
  font-weight: 650;
}

.legal-language-switcher a[aria-current="page"] {
  color: var(--button-primary-foreground);
  border-color: var(--button-primary-background);
  background: var(--button-primary-background);
}

.legal-content {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--legal-surface);
  box-shadow: var(--shadow-card);
}

.legal-content h2 {
  margin: 48px 0 15px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 17px;
}

.legal-content p,
.legal-content li {
  color: var(--legal-copy);
  font-size: 16px;
  line-height: 1.7;
}

.legal-content p {
  margin: 0 0 15px;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  margin: 32px 0 0 !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--legal-note) !important;
  font-size: 13px !important;
}

:focus-visible {
  outline: 3px solid rgba(8, 120, 249, 0.4);
  outline-offset: 4px;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 420ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-changing body,
.theme-changing .site-header,
.theme-changing .section-white,
.theme-changing .fact-card,
.theme-changing .value-card,
.theme-changing .responsibility-card,
.theme-changing .legal-content,
.theme-changing .language-link,
.theme-changing .theme-toggle,
.theme-changing .nav-links {
  transition:
    color 420ms ease,
    background-color 420ms ease,
    border-color 420ms ease;
}

:root[data-theme="dark"] .orb {
  filter: saturate(105%) brightness(0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 48px 120px rgba(26, 72, 153, 0.2);
}

:root[data-theme="dark"] .section-dark {
  background:
    radial-gradient(circle at 8% 10%, rgba(60, 131, 246, 0.22), transparent 30%),
    radial-gradient(circle at 93% 82%, rgba(117, 87, 255, 0.18), transparent 34%),
    #07090e;
}

:root[data-theme="dark"] .contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 980px) {
  .hero {
    padding-top: 128px;
  }

  .hero-grid,
  .company-grid,
  .product-stage,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
  }

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

  .hero-visual {
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .company-grid {
    gap: 45px;
  }

  .company-statement {
    max-width: 800px;
  }

  .product-stage {
    gap: 52px;
  }

  .product-visual {
    order: 2;
  }

  .product-icon {
    width: min(72%, 400px);
  }

  .legal-layout {
    gap: 35px;
  }

  .legal-heading {
    position: static;
  }
}

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

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    z-index: 49;
    top: 64px;
    right: 0;
    left: 0;
    height: calc(100dvh - 64px);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    visibility: hidden;
    background: var(--mobile-navigation);
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms;
  }

  .menu-open .nav-links {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 24px;
    font-weight: 620;
    letter-spacing: -0.025em;
  }

  .language-link {
    width: auto !important;
    height: 42px;
    margin-top: 18px;
    padding: 0 15px !important;
    border-bottom: 1px solid var(--line) !important;
    font-size: 15px !important;
  }

  .theme-toggle {
    width: 48px;
    height: 42px;
    margin-top: 14px;
  }

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

  .hero {
    min-height: auto;
    padding: 124px 0 70px;
  }

  .hero h1 {
    font-size: clamp(44px, 12vw, 62px);
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 19px;
  }

  .hero-visual {
    min-height: 450px;
  }

  .orb {
    width: 390px;
    height: 390px;
  }

  .phone {
    width: 214px;
    height: 428px;
    border-radius: 41px;
  }

  .phone-screen {
    border-radius: 33px;
  }

  .app-preview-card {
    padding: 12px;
    grid-template-columns: 40px 1fr;
  }

  .app-preview-card img {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .floating-note.top {
    right: 0;
  }

  .floating-note.bottom {
    left: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-compact {
    padding: 68px 0;
  }

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

  .section-title {
    font-size: clamp(40px, 12vw, 60px);
  }

  .section-intro {
    font-size: 18px;
  }

  .fact-grid,
  .value-grid,
  .responsibility-grid {
    grid-template-columns: 1fr;
  }

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

  .fact-number {
    margin-bottom: 34px;
  }

  .company-meta {
    grid-template-columns: 1fr;
  }

  .product-stage {
    padding: 28px;
    border-radius: 30px;
  }

  .product-copy h3 {
    font-size: 53px;
  }

  .product-point {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-icon {
    width: 82%;
  }

  .value-card {
    min-height: 250px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
    border-radius: 30px;
  }

  .contact-panel h2 {
    font-size: clamp(42px, 12.5vw, 62px);
  }

  .contact-panel .button {
    justify-self: start;
  }

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

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

  .legal-main {
    padding: 116px 0 68px;
  }
}

@media (max-width: 440px) {
  .hero-visual {
    margin-left: -7px;
    width: calc(100% + 14px);
  }

  .floating-note {
    padding: 10px 12px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.01ms;
  }
  html {
    scroll-behavior: auto;
  }

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