@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #111827;
  --ink-soft: #344054;
  --muted: #667085;
  --muted-light: #98a2b3;
  --line: #e6e9ef;
  --line-strong: #d5dae3;
  --surface: #ffffff;
  --surface-soft: #f7f8fa;
  --surface-warm: #f7f7f8;
  --accent: #dc315b;
  --accent-dark: #bf2148;
  --accent-soft: #fff0f4;
  --shadow-soft: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-device: 0 18px 38px rgba(16, 24, 40, 0.14), 0 2px 7px rgba(16, 24, 40, 0.07);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(220, 49, 91, 0.36);
  outline-offset: 3px;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(14px);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(230, 233, 239, 0.86);
  box-shadow: none;
}

.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

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

.desktop-nav > a:not(.nav-cta) {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease;
}

.desktop-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible {
  color: var(--ink);
}

.desktop-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: #202b3f;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.12);
  transform: translateY(-1px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 112px 0 40px;
}

.hero-grid {
  min-height: clamp(560px, calc(88svh - 152px), 760px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 580px;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 550px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.store-actions.centered {
  justify-content: center;
}

.store-button {
  min-width: 168px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  border-radius: 16px;
  color: white;
  background: var(--ink);
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.12);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  background: #202b3f;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.16);
  transform: translateY(-2px);
}

.store-button:active {
  transform: scale(0.985);
}

.store-button svg {
  width: 24px;
  height: 28px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-button span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.store-button small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.store-button strong {
  margin-top: 3px;
  font-size: 16px;
  font-weight: 700;
}

.hero-visual {
  --hero-phone-width: 280px;
  --hero-phone-offset: 210px;
  --hero-side-scale: 0.84;
  position: relative;
  height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  touch-action: pan-y;
  user-select: none;
}

.hero-visual.reveal-ready.is-visible {
  transform: none;
  will-change: auto;
}

.hero-phone {
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  overflow: hidden;
  width: var(--hero-phone-width);
  height: auto;
  margin: 0;
  padding: 0;
  border: 5px solid #172033;
  border-radius: 38px;
  background: white;
  box-shadow: var(--shadow-device);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 620ms var(--ease-out), opacity 360ms ease, filter 360ms ease, box-shadow 360ms ease;
  will-change: transform;
}

.hero-phone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: top center;
  image-rendering: auto;
  opacity: 1;
  pointer-events: none;
}

.hero-phone--chat,
.hero-phone--flow {
  aspect-ratio: 853 / 1844;
}

.hero-phone--cinema {
  aspect-ratio: 868 / 1844;
}

.hero-phone[data-position="center"] {
  z-index: 3;
  cursor: default;
  transform: translate(-50%, -50%);
}

.hero-phone[data-position="left"] {
  z-index: 2;
  opacity: 0.76;
  filter: saturate(0.82);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.13);
  transform: translate(-50%, -50%) translateX(calc(var(--hero-phone-offset) * -1)) translateY(28px) scale(var(--hero-side-scale));
}

.hero-phone[data-position="right"] {
  z-index: 2;
  opacity: 0.76;
  filter: saturate(0.82);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.13);
  transform: translate(-50%, -50%) translateX(var(--hero-phone-offset)) translateY(28px) scale(var(--hero-side-scale));
}

.hero-carousel-dots {
  position: absolute;
  right: 50%;
  bottom: 10px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 4px;
  transform: translateX(50%);
}

.hero-carousel-dot {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-carousel-dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--line-strong);
  content: "";
  transform: translate(-50%, -50%);
  transition: width 180ms ease, background-color 180ms ease;
}

.hero-carousel-dot.is-active::before {
  width: 18px;
  background: var(--ink);
}

@media (hover: hover) and (pointer: fine) {
  .hero-phone:not([data-position="center"]):hover {
    opacity: 0.9;
    filter: saturate(1);
  }
}

.identity-avatar {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--surface-soft);
}

.identity-avatar > img {
  position: absolute;
  top: -306%;
  width: 930%;
  max-width: none;
  height: auto;
  object-fit: initial;
}

.identity-avatar--mert > img {
  left: -27%;
}

.identity-avatar--elif > img {
  left: -89%;
}

.feature-strip {
  padding: 28px 0 86px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft), 0 18px 44px rgba(16, 24, 40, 0.07);
}

.feature-item {
  position: relative;
  min-width: 0;
  padding: 30px 30px 32px;
  border-left: 1px solid var(--line);
  transition: background-color 220ms ease;
}

.feature-item::after {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 280ms var(--ease-out);
}

.feature-item--clone {
  display: none;
}

.feature-item:first-child {
  border-left: 0;
}

.feature-item h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.feature-item p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 590px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.section-heading.compact h2 {
  font-size: clamp(34px, 4vw, 46px);
}

.animated-features {
  padding: 112px 0 124px;
  background: var(--surface-soft);
}

.animated-features .section-heading {
  margin-bottom: 48px;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.feature-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease-out);
}

.feature-card.reveal-ready {
  transform: translateY(18px);
}

.feature-card.reveal-ready.is-visible {
  transform: translateY(0);
}

.feature-card.reveal-ready .chat-bubble,
.feature-card.reveal-ready .typing-indicator,
.feature-card.reveal-ready .typing-indicator i {
  animation-play-state: paused;
}

.feature-card.reveal-ready.is-visible .chat-bubble,
.feature-card.reveal-ready.is-visible .typing-indicator,
.feature-card.reveal-ready.is-visible .typing-indicator i {
  animation-play-state: running;
}

.feature-card--wide {
  grid-column: span 6;
}

.feature-card--compact {
  grid-column: span 6;
}

.feature-card--flow {
  grid-column: 1 / -1;
}

.feature-card-copy {
  position: relative;
  z-index: 4;
  max-width: 560px;
}

.feature-card-label {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 0;
  font-size: clamp(27px, 2.6vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.feature-card-copy > p:last-child {
  max-width: 540px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.feature-visual {
  position: relative;
  min-height: 0;
  height: 330px;
  margin-top: 24px;
  padding-top: 0;
}

.feature-card--games {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 40px;
}

.game-intro {
  width: 100%;
}

.feature-card--games h3 {
  font-size: clamp(34px, 3.4vw, 48px);
}

.game-intro > h3 + p {
  max-width: 460px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.game-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.game-facts li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.game-fact-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-soft);
}

.game-fact-icon svg,
.game-carousel-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.game-visual {
  height: 420px;
  min-height: 420px;
  padding-top: 0;
}

.game-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 34px 28px;
}

.game-carousel-viewport {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.game-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.game-screen-gallery {
  --game-slide-basis: calc((100% - 32px) / 3);
  display: flex;
  align-items: start;
  gap: 16px;
  height: 100%;
  min-width: 0;
  padding: 2px 1px 8px;
}

.game-screen {
  min-width: 0;
  flex: 0 0 var(--game-slide-basis);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  scroll-snap-align: start;
}

.game-screen figure {
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: white;
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.1);
}

.game-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.game-screen-copy {
  min-height: 58px;
}

.game-screen-copy h4 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.game-screen-copy p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.game-carousel-button {
  position: absolute;
  top: calc(50% - 36px);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
  cursor: pointer;
  transition: transform 180ms var(--ease-out), border-color 180ms ease;
}

.game-carousel-button--prev { left: -14px; }
.game-carousel-button--next { right: -14px; }

.game-carousel-dots {
  position: absolute;
  right: 34px;
  bottom: 0;
  left: 34px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.game-carousel-dot {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.game-carousel-dot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-strong);
  content: "";
  transform: translate(-50%, -50%);
  transition: width 180ms ease, background-color 180ms ease;
}

.game-carousel-dot.is-active::before {
  width: 20px;
  border-radius: 999px;
  background: var(--ink);
}

.memory-visual {
  height: 330px;
  min-height: 330px;
}

.memory-screen {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: white;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.12);
  transition: transform 360ms var(--ease-out), box-shadow 360ms var(--ease-out);
}

.memory-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.chat-visual {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.chat-event {
  position: relative;
  min-height: 62px;
}

.chat-bubble {
  position: absolute;
  bottom: 0;
  left: 0;
  width: max-content;
  max-width: 82%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 16px 16px 16px 5px;
  color: var(--ink-soft);
  background: var(--surface-soft);
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(6px);
}

.chat-bubble--right {
  right: 0;
  left: auto;
  border-color: var(--accent);
  border-radius: 16px 16px 5px;
  color: white;
  background: var(--accent);
}

.chat-bubble small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chat-bubble--right small { color: rgba(255, 255, 255, 0.72); }

.chat-event--one .chat-bubble { animation: chat-message-one 12s ease infinite; }
.chat-event--two .chat-bubble { animation: chat-message-two 12s ease infinite; }
.chat-event--three .chat-bubble { animation: chat-message-three 12s ease infinite; }

.typing-indicator {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: max-content;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 15px 15px 15px 5px;
  background: var(--surface-soft);
  opacity: 0;
  transform: translateY(4px);
}

.typing-indicator--right {
  right: 0;
  left: auto;
  border-radius: 15px 15px 5px;
}

.typing-indicator span {
  margin-right: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.typing-indicator i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--muted-light);
  animation: typing-dot 900ms ease-in-out infinite;
}

.typing-indicator i:nth-child(2) { animation-delay: 120ms; }
.typing-indicator i:nth-child(3) { animation-delay: 240ms; }

.chat-event--one .typing-indicator { animation: chat-typing-one 12s ease infinite; }
.chat-event--two .typing-indicator { animation: chat-typing-two 12s ease infinite; }
.chat-event--three .typing-indicator { animation: chat-typing-three 12s ease infinite; }

.feature-card--date {
  min-height: 0;
  padding-bottom: 0;
}

.feature-card--date .feature-card-copy {
  max-width: 560px;
}

.date-visual {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  min-height: 0;
  flex: 0 0 auto;
  display: block;
  margin-top: 24px;
  padding: 0;
}

.date-room-screen {
  width: min(100%, 384px);
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  border: 4px solid #141a25;
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
  background: #0a1020;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.24);
}

.date-room-screen > img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.feature-card--cinema {
  min-height: 0;
  padding-bottom: 0;
}

.cinema-visual {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  min-height: 0;
  flex: 0 0 auto;
  display: block;
  margin-top: 24px;
  padding: 0;
}

.cinema-room-screen {
  width: min(100%, 384px);
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: white;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.14);
}

.cinema-room-screen > img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.flow-visual {
  height: 330px;
  min-height: 330px;
  overflow: hidden;
}

.flow-post-track {
  height: 100%;
  min-width: 0;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 1px 8px;
  scroll-snap-type: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 901px) {
  .feature-card--games {
    display: grid;
    grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
    align-items: center;
    gap: 42px;
  }

  .feature-card--games .feature-card-copy {
    grid-column: 1;
  }

  .feature-card--games .game-visual {
    grid-column: 2;
    width: 100%;
    margin-top: 0;
  }
}

.flow-post-track::-webkit-scrollbar {
  display: none;
}

.flow-post-card {
  width: min(78%, 250px);
  min-width: min(78%, 250px);
  height: 100%;
  display: grid;
  grid-template-rows: auto 148px minmax(52px, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.07);
  scroll-snap-align: start;
}

.flow-post-header {
  min-width: 0;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 10px;
}

.flow-avatar-pair {
  width: 60px;
  height: 34px;
  display: flex;
  align-items: center;
  flex: 0 0 60px;
}

.flow-avatar-photo {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--surface-soft);
  box-shadow: inset 0 0 0 1px var(--line);
}

.flow-avatar-photo + .flow-avatar-photo {
  margin-left: -8px;
}

.flow-avatar-photo > img {
  position: absolute;
  top: -455%;
  width: 1250%;
  max-width: none;
  height: auto;
}

.flow-avatar-photo--ece > img { left: -317%; }
.flow-avatar-photo--kaan > img { left: -399%; }
.flow-avatar-photo--sena > img { left: -552%; }
.flow-avatar-photo--okan > img { left: -633%; }
.flow-avatar-photo--duru > img { left: -791%; }
.flow-avatar-photo--bora > img { left: -872%; }
.flow-avatar-photo--zeynep > img,
.flow-avatar-photo--arda > img {
  top: -678%;
  width: 1800%;
}

.flow-avatar-photo--zeynep > img { left: -1522%; }
.flow-avatar-photo--arda > img { left: -1634%; }

.flow-post-author {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.flow-post-author strong,
.flow-post-author small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow-post-author strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
}

.flow-post-author small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.2;
}

.flow-post-media {
  position: relative;
  overflow: hidden;
  background-color: var(--surface-soft);
  background-image: url("resim/alb%C3%BCm.png");
  background-repeat: no-repeat;
  background-size: 300% auto;
}

.flow-post-media--one { background-position: 0 35%; }
.flow-post-media--two {
  background-image: url("resim/akis-duru-bora-el-ele.png");
  background-position: center;
  background-size: cover;
}
.flow-post-media--three { background-position: 100% 35%; }
.flow-post-media--four {
  background-position: 50% 63%;
  background-size: 340% auto;
}

.flow-post-media > span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  color: white;
  background: rgba(16, 24, 40, 0.76);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.flow-post-caption {
  margin: 0;
  padding: 10px 11px 6px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.4;
}

.flow-post-stats {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.flow-post-stats span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.flow-post-stats svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-post-stats .flow-like-active {
  color: var(--accent);
}

.flow-post-stats .flow-like-active svg {
  fill: currentColor;
}
@media (hover: hover) and (pointer: fine) {
  .feature-item:hover {
    background: var(--surface-soft);
  }

  .feature-item:hover::after {
    opacity: 0.72;
    transform: scaleX(1);
  }

  .feature-card:hover,
  .feature-card.reveal-ready.is-visible:hover {
    border-color: var(--line-strong);
    box-shadow: 0 10px 26px rgba(16, 24, 40, 0.07);
    transform: translateY(-4px);
  }

  .feature-card--memories:hover .memory-screen {
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.16);
    transform: translateY(-4px);
  }

  .game-carousel-button:hover {
    border-color: var(--line-strong);
    transform: scale(1.05);
  }

}

@keyframes game-screen-focus {
  0%, 72%, 100% { transform: translateY(0) scale(1); }
  82% { transform: translateY(-3px) scale(1.012); }
}

@keyframes chat-message-one {
  0%, 8%, 92%, 100% { opacity: 0; transform: translateY(6px); }
  11%, 88% { opacity: 1; transform: translateY(0); }
}

@keyframes chat-message-two {
  0%, 31%, 92%, 100% { opacity: 0; transform: translateY(6px); }
  34%, 88% { opacity: 1; transform: translateY(0); }
}

@keyframes chat-message-three {
  0%, 55%, 92%, 100% { opacity: 0; transform: translateY(6px); }
  58%, 88% { opacity: 1; transform: translateY(0); }
}

@keyframes chat-typing-one {
  0%, 7% { opacity: 1; transform: translateY(0); }
  9%, 100% { opacity: 0; transform: translateY(4px); }
}

@keyframes chat-typing-two {
  0%, 22%, 32%, 100% { opacity: 0; transform: translateY(4px); }
  24%, 30% { opacity: 1; transform: translateY(0); }
}

@keyframes chat-typing-three {
  0%, 46%, 56%, 100% { opacity: 0; transform: translateY(4px); }
  48%, 54% { opacity: 1; transform: translateY(0); }
}

@keyframes typing-dot {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(-3px); opacity: 1; }
}

@keyframes cinema-progress {
  0% { transform: scaleX(0.18); }
  82% { transform: scaleX(0.82); }
  100% { transform: scaleX(0.18); }
}

@keyframes presence-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.faq {
  padding: 64px 0 92px;
}

.faq-shell {
  max-width: 900px;
}

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

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

.accordion summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 2px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 20px;
  font-weight: 400;
  transition: color 180ms ease, background 180ms ease, transform 260ms var(--ease-out);
}

.accordion details[open] summary span {
  color: white;
  background: var(--ink);
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 700px;
  margin: -4px 0 0;
  padding: 0 56px 24px 2px;
  color: var(--muted);
  line-height: 1.7;
}

.download {
  padding: 92px 0 96px;
  background: var(--surface-warm);
}

.download-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.download-inner > img {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}

.download .eyebrow {
  margin-bottom: 14px;
}

.download h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.download-inner > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: white;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  font-size: 18px;
}

.footer-identity {
  justify-self: start;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: white;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 120ms ease;
}

.social-links a:hover {
  color: var(--accent-dark);
  border-color: rgba(220, 49, 91, 0.25);
  background: var(--accent-soft);
}

.social-links a:active {
  transform: scale(0.95);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links svg .fill {
  fill: currentColor;
  stroke: none;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 12px;
}

.footer-meta a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  transition: color 180ms ease;
}

.footer-meta a:hover {
  color: var(--accent-dark);
}

@media (max-width: 1024px) {
  .hero-grid {
    min-height: clamp(560px, calc(88svh - 152px), 660px);
    grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
    gap: 28px;
  }

  .hero-visual {
    --hero-phone-width: 244px;
    --hero-phone-offset: 170px;
    --hero-side-scale: 0.8;
    height: 600px;
  }

  .feature-item {
    padding-inline: 22px;
  }

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

  .social-links {
    justify-content: flex-end;
  }

  .footer-meta {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 76px;
  }

  .container {
    width: min(calc(100% - 40px), 1200px);
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-soft);
    cursor: pointer;
  }

  .menu-button span {
    position: absolute;
    width: 19px;
    height: 1.5px;
    border-radius: 99px;
    background: var(--ink);
    transition: transform 240ms var(--ease-out);
  }

  .menu-button span:first-child {
    transform: translateY(-4px);
  }

  .menu-button span:last-child {
    transform: translateY(4px);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    padding: 28px 16px max(28px, env(safe-area-inset-bottom));
    color: var(--ink);
    background: var(--surface);
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 20px;
    font-weight: 700;
  }

  .mobile-menu .nav-cta {
    margin-top: 20px;
    justify-content: center;
    border: 0;
    border-radius: 16px;
    color: var(--surface);
    background: var(--ink);
    font-size: 16px;
  }

  .hero {
    padding: 104px 0 26px;
  }

  .hero-grid {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .hero-copy {
    max-width: 570px;
    text-align: center;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 540px;
    font-size: clamp(38px, 10.8vw, 44px);
    line-height: 1.04;
  }

  .hero-title-line {
    display: inline;
  }

  .hero-lead {
    max-width: 520px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 1.65;
  }

  .store-actions {
    justify-content: center;
    margin-top: 24px;
  }

  .store-button {
    min-width: 154px;
    min-height: 56px;
    padding-inline: 15px;
  }

  .hero-visual {
    --hero-phone-width: clamp(218px, 58vw, 238px);
    --hero-phone-offset: clamp(112px, 34vw, 148px);
    --hero-side-scale: 0.72;
    width: 100%;
    height: 560px;
  }

  .hero-phone {
    border-width: 4px;
    border-radius: 34px;
  }

  .hero-carousel-dots {
    bottom: 4px;
  }

  .feature-strip {
    padding: 34px 0 72px;
  }

  .feature-grid {
    width: auto;
    max-width: none;
    display: flex;
    gap: 0;
    overflow-x: auto;
    margin-inline: 20px;
    padding-right: 0;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft), 0 14px 34px rgba(16, 24, 40, 0.07);
    scroll-padding-left: 20px;
    scroll-snap-type: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .feature-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-item {
    flex: 0 0 min(82vw, 350px);
    padding: 28px;
    border-bottom: 0;
    border-left: 0;
    transition: background-color 280ms ease, box-shadow 280ms ease;
  }

  .feature-item.is-mobile-active {
    background: var(--surface-soft);
    box-shadow: inset 0 0 0 1px rgba(220, 49, 91, 0.08);
  }

  .feature-item.is-mobile-active::after {
    opacity: 0.72;
    transform: scaleX(1);
  }

  .feature-item--clone {
    display: block;
  }

  .feature-item + .feature-item {
    border-left: 1px solid var(--line);
  }

  .feature-item h2 {
    font-size: 20px;
  }

  .feature-item p {
    max-width: 290px;
    font-size: 16px;
  }

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

  .section-heading h2 {
    font-size: clamp(32px, 9vw, 36px);
  }

  .section-heading > p:last-child {
    margin-top: 14px;
    font-size: 16px;
  }

  .animated-features {
    padding: 82px 0 92px;
  }

  .animated-features .section-heading {
    margin-bottom: 34px;
  }

  .feature-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card,
  .feature-card--wide,
  .feature-card--compact {
    grid-column: 1;
    min-height: 0;
    padding: 22px;
    border-radius: 24px;
  }

  .feature-card h3 {
    font-size: clamp(26px, 7.5vw, 30px);
  }

  .feature-card-copy > p:last-child {
    margin-top: 12px;
    font-size: 16px;
  }

  .feature-visual {
    flex: 0 0 220px;
    height: 220px;
    margin-top: 22px;
    padding-top: 0;
  }

  .game-visual {
    height: 410px;
    min-height: 410px;
    flex-basis: 410px;
  }

  .game-facts {
    gap: 8px;
    margin-top: 20px;
  }

  .game-facts li {
    align-items: flex-start;
    gap: 7px;
    font-size: 11px;
  }

  .game-fact-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .game-fact-icon svg {
    width: 18px;
    height: 18px;
  }

  .game-carousel {
    padding-right: 28px;
    padding-left: 28px;
  }

  .game-carousel-viewport {
    overflow-x: hidden;
  }

  .game-screen-gallery {
    --game-slide-basis: 100%;
    display: flex;
    overflow: visible;
    gap: 0;
    padding: 2px 0 8px;
  }

  .game-screen {
    position: static;
    flex-basis: var(--game-slide-basis);
    width: auto;
    height: auto;
    margin: 0;
    opacity: 1;
    animation: none;
  }

  .game-screen figure {
    border-radius: 16px;
  }

  .game-carousel-button {
    top: calc(50% - 34px);
    width: 40px;
    height: 40px;
  }

  .game-carousel-button--prev { left: -5px; }
  .game-carousel-button--next { right: -5px; }

  .memory-visual {
    min-height: 220px;
  }

  .memory-visual {
    height: auto;
    min-height: 0;
    flex: 0 0 auto;
    aspect-ratio: 1086 / 1448;
  }

  .flow-visual {
    height: 330px;
    min-height: 330px;
    flex: 0 0 330px;
  }

  .chat-bubble {
    font-size: 14px;
  }

  .feature-card--date {
    min-height: 0;
    padding-right: 22px;
    padding-bottom: 0;
  }

  .feature-card--cinema {
    padding-bottom: 0;
  }

  .feature-card--date .feature-card-copy {
    max-width: none;
  }

  .date-visual {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    flex: 0 0 auto;
    margin-top: 22px;
  }

  .date-scene {
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
  }

  .date-room-screen {
    width: min(100%, 336px);
  }

  .cinema-visual {
    height: auto;
    min-height: 0;
    flex: 0 0 auto;
    margin-top: 22px;
  }

  .cinema-room-screen {
    width: min(100%, 336px);
  }

  .faq {
    padding: 56px 0 72px;
  }

  .accordion summary {
    min-height: 70px;
    font-size: 16px;
  }

  .accordion details p {
    padding-right: 10px;
    font-size: 16px;
  }

  .download {
    padding: 72px 0 76px;
  }

  .download h2 {
    font-size: clamp(32px, 9vw, 36px);
  }

  .site-footer {
    padding: 34px 0 max(34px, env(safe-area-inset-bottom));
  }

  .footer-shell {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-identity {
    align-self: center;
    text-align: center;
  }

  .social-links {
    max-width: none;
    flex-wrap: nowrap;
    gap: 3px;
  }

  .footer-meta {
    justify-content: center;
  }

  .footer-meta a {
    min-height: 44px;
    padding-inline: 4px;
  }
}

@media (max-width: 366px) {
  .social-links {
    display: grid;
    grid-template-columns: repeat(4, 44px);
    gap: 8px;
  }
}

@media (max-width: 359px) {
  .hero .store-actions,
  .download .store-actions {
    max-width: 250px;
    margin-inline: auto;
  }
}

@media (max-width: 390px) {
  .container {
    width: calc(100% - 40px);
  }

  .store-actions {
    width: 100%;
    gap: 8px;
  }

  .store-button {
    min-width: 0;
    flex: 1 1 calc(50% - 4px);
    gap: 9px;
    padding-inline: 12px;
  }

  .store-button svg {
    width: 22px;
    height: 25px;
  }

}

@media (max-width: 359px) {
  .store-button {
    flex-basis: 100%;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .animated-features {
    padding: 96px 0 104px;
  }

  .feature-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card,
  .feature-card--wide,
  .feature-card--compact {
    grid-column: 1;
    min-height: 0;
    padding: 30px;
  }

  .feature-visual {
    height: 260px;
  }

  .game-visual {
    height: 420px;
    min-height: 420px;
  }

  .game-carousel-viewport {
    overflow-x: hidden;
  }

  .game-screen-gallery {
    --game-slide-basis: 100%;
    overflow: visible;
    gap: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .memory-visual {
    height: 400px;
    min-height: 400px;
  }

  .flow-visual {
    height: 330px;
    min-height: 330px;
  }

  .feature-card--date {
    min-height: 0;
    padding-bottom: 0;
  }

  .feature-card--cinema {
    padding-bottom: 0;
  }

  .date-visual {
    height: auto;
    min-height: 0;
    flex: 0 0 auto;
  }

  .cinema-visual {
    height: auto;
    min-height: 0;
  }
}

@media (min-width: 768px) and (max-width: 900px) and (orientation: portrait) {
  .hero-grid {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .hero-copy {
    max-width: 640px;
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero .store-actions {
    justify-content: center;
  }

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

}

@media (max-width: 900px) and (orientation: landscape) {
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    text-align: left;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-lead {
    margin-left: 0;
  }

  .hero .store-actions {
    justify-content: flex-start;
  }

  .hero-visual {
    --hero-phone-width: 184px;
    --hero-phone-offset: 0px;
    --hero-side-scale: 1;
    height: 450px;
  }

  .hero-phone:not([data-position="center"]) {
    opacity: 0;
    pointer-events: none;
  }

  .hero-carousel-dots {
    bottom: 0;
  }

}

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

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

  .reveal-ready,
  .reveal-ready.is-visible {
    opacity: 1;
    transform: none;
  }

  .chat-bubble,
  .typing-indicator,
  .typing-indicator i {
    animation: none !important;
  }

  .chat-bubble {
    opacity: 1;
    transform: none;
  }

  .typing-indicator {
    display: none;
  }
}

/* Legal pages */
.legal-body {
  background: white;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(230, 233, 239, 0.86);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.legal-nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease;
}

.legal-nav-link:hover {
  color: var(--ink);
  background: var(--surface-soft);
}

.legal-page {
  padding: 72px 0 84px;
}

.legal-hero {
  max-width: 760px;
  margin-bottom: 40px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.legal-hero > p:not(.kicker):not(.legal-date) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.legal-date {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-document {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.legal-document section {
  padding: 30px 34px;
  border-bottom: 1px solid var(--line);
}

.legal-document section:last-child {
  border-bottom: 0;
}

.legal-document h2 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.legal-document p {
  margin: 0;
}

.legal-document p + p,
.legal-document ul,
.legal-document ol {
  margin-top: 12px;
}

.legal-document ul,
.legal-document ol {
  margin-bottom: 0;
  padding-left: 22px;
}

.legal-document li + li {
  margin-top: 7px;
}

.legal-document strong {
  color: var(--ink-soft);
  font-weight: 600;
}

.legal-email {
  color: var(--accent-dark);
  font-weight: 500;
}

.legal-switch {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

.legal-switch a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 14px;
  font-weight: 500;
}

.legal-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.legal-footer .container {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-footer p {
  margin: 0;
}

.legal-footer a {
  font-weight: 500;
}

.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

/* Support page */
.support-body {
  background: white;
}

.support-page {
  padding: 72px 0 96px;
}

.support-shell {
  max-width: 1040px;
}

.support-hero {
  max-width: 640px;
}

.support-hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.support-hero > p {
  max-width: 600px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.support-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 44px;
}

.support-explorer {
  width: 100%;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.support-tab-sidebar {
  padding: 32px 22px;
  border-right: 1px solid var(--line);
  background: var(--surface-soft);
}

.support-explorer-label {
  display: block;
  margin: 0 10px 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.support-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-tab {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.support-tab:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}

.support-tab.is-active,
.support-tab[aria-selected="true"] {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
  box-shadow: 0 5px 14px rgba(16, 24, 40, 0.07);
}

.support-tab svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: var(--accent-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-tab-content {
  min-width: 0;
  padding: 34px 36px 36px;
  background: var(--surface);
}

.support-tab-panel[hidden] {
  display: none;
}

.support-tab-panel + .support-tab-panel {
  margin-top: 42px;
}

.support-panel-heading {
  margin-bottom: 26px;
}

.support-panel-heading h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.support-panel-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.support-accordion {
  display: grid;
  gap: 12px;
}

.support-accordion details {
  scroll-margin-top: 104px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.support-accordion details[open] {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.support-accordion summary {
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 16px 54px 16px 18px;
  color: var(--ink);
  background: var(--surface);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  transition: background 180ms ease;
}

.support-accordion summary:hover {
  background: var(--surface-soft);
}

.support-accordion summary::-webkit-details-marker {
  display: none;
}

.support-accordion summary::after {
  position: absolute;
  right: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-dark);
  background: var(--accent-soft);
  content: "+";
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms var(--ease-out);
}

.support-accordion details[open] summary::after {
  transform: rotate(45deg);
}

.support-accordion details > div {
  padding: 16px 54px 19px 18px;
  border-top: 1px solid var(--line);
}

.support-accordion details p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.support-accordion details a {
  color: var(--accent-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-contact {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(320px, 1.35fr) minmax(190px, 0.65fr);
  align-items: center;
  gap: 20px 30px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.support-contact-channel {
  display: flex;
  align-items: center;
  gap: 13px;
}

.support-contact-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.support-contact-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.support-contact-label,
.support-contact-address {
  display: block;
}

.support-contact-label {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.support-contact-address {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
}

.support-contact-address:hover {
  color: var(--accent-dark);
}

.support-contact h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.support-contact-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.support-contact-button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0 17px 0 19px;
  border-radius: 14px;
  color: white;
  background: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.support-contact-button:hover {
  background: #202b3f;
  transform: translateY(-1px);
}

.support-contact-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms var(--ease-out);
}

.support-contact-button:hover svg {
  transform: translateX(3px);
}

.support-contact .support-contact-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.support-contact-note svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
  color: var(--accent-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .support-contact {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .support-contact-channel {
    grid-column: 1 / -1;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

  .support-contact-button {
    min-width: 200px;
  }
}

@media (max-width: 767px) {
  .support-explorer {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 24px;
  }

  .support-tab-sidebar {
    padding: 24px 20px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .support-explorer-label {
    margin-inline: 4px;
  }

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

  .support-tab {
    min-height: 48px;
    padding-inline: 10px;
  }

  .support-tab-content {
    padding: 28px 24px 30px;
  }
}

@media (max-width: 640px) {
  .legal-nav-shell {
    min-height: 68px;
  }

  .legal-header .brand span {
    display: none;
  }

  .legal-page {
    padding: 44px 0 60px;
  }

  .legal-hero {
    margin-bottom: 28px;
  }

  .legal-hero h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .legal-hero > p:not(.kicker):not(.legal-date) {
    font-size: 16px;
  }

  .legal-document {
    border-radius: 22px;
  }

  .legal-document section {
    padding: 24px 22px;
  }

  .legal-footer .container {
    min-height: 104px;
    padding-block: 24px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .legal-footer-links {
    gap: 10px 18px;
  }

  .support-page {
    padding: 44px 0 64px;
  }

  .support-hero h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .support-hero > p {
    font-size: 15px;
  }

  .support-layout {
    gap: 40px;
    margin-top: 36px;
  }

  .support-panel-heading h2 {
    font-size: 24px;
  }

  .support-accordion summary {
    min-height: 58px;
    padding: 15px 50px 15px 16px;
  }

  .support-accordion summary::after {
    right: 13px;
  }

  .support-accordion details > div {
    padding: 15px 16px 18px;
  }

  .support-contact {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 26px;
    border-radius: 22px;
  }

  .support-contact-channel {
    grid-column: auto;
    padding-bottom: 20px;
  }

  .support-contact-copy {
    padding-top: 22px;
  }

  .support-contact-button {
    min-width: 0;
    margin-top: 22px;
  }

  .support-contact .support-contact-note {
    grid-column: auto;
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-tab,
  .support-accordion details,
  .support-accordion summary,
  .support-accordion summary::after,
  .support-contact-button,
  .support-contact-button svg {
    transition: none;
  }
}
