:root {
  color-scheme: dark;
  --bg: #0d0f11;
  --bg-deep: #090a0c;
  --surface: #15181b;
  --surface-raised: #1b1f23;
  --surface-soft: #20252a;
  --text: #f5f2eb;
  --text-soft: #d6d8da;
  --muted: #989fa7;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.15);
  --accent: #f2aa3d;
  --accent-strong: #ffc05f;
  --accent-ink: #201506;
  --accent-soft: rgba(242, 170, 61, 0.13);
  --success: #92d6a4;
  --max: 1220px;
  --radius-sm: 0.8rem;
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 82% 7%, rgba(242, 170, 61, 0.1), transparent 27rem),
    radial-gradient(circle at 15% 35%, rgba(242, 170, 61, 0.045), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: var(--accent-strong); text-underline-offset: 0.22em; }
a:hover { color: #ffd28e; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(255, 192, 95, 0.72); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  transform: translateY(-160%);
  border-radius: 0.55rem;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(13, 15, 17, 0.82);
  backdrop-filter: blur(20px) saturate(125%);
}
.nav {
  width: min(calc(100% - 2.5rem), var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: block;
  box-shadow: 0 9px 28px rgba(242, 170, 61, 0.24);
}
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 0.2rem; }
.nav-links a {
  padding: 0.48rem 0.72rem;
  border-radius: 0.62rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--surface-soft); color: var(--text); }

.button {
  min-height: 48px;
  padding: 0.72rem 1.08rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--surface-raised);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.24); color: var(--text); }
.button.primary { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); }
.button.primary:hover { background: var(--accent-strong); }
.button.quiet { background: rgba(255, 255, 255, 0.025); }
.text-link { font-weight: 800; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 0.3rem; transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(4px); }

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero {
  width: min(calc(100% - 2.5rem), var(--max));
  min-height: 690px;
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(540px, 1.14fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.hero-content { min-width: 0; position: relative; z-index: 2; }
.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.25rem, 5.9vw, 5.55rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.hero-copy { max-width: 630px; margin: 1.45rem 0 0; color: var(--text-soft); font-size: clamp(1.02rem, 1.7vw, 1.2rem); }
.hero-copy p { margin: 0; }
.hero-actions { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero-actions .button { min-width: 124px; }
.trust-list {
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 680;
}
.trust-list li { display: inline-flex; align-items: center; gap: 0.48rem; }
.trust-list li::before { width: 6px; height: 6px; border-radius: 99px; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); content: ""; }
.hero-visual { min-width: 0; position: relative; isolation: isolate; }
.visual-glow {
  position: absolute;
  z-index: -1;
  inset: -13% -10% -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 170, 61, 0.17), rgba(242, 170, 61, 0.035) 44%, transparent 70%);
  filter: blur(10px);
}
.app-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #111315;
  box-shadow: var(--shadow);
}
.app-frame-hero { transform: perspective(1200px) rotateY(-2.5deg) rotateX(1deg); transform-origin: center; }
.app-frame img { width: 100%; height: auto; display: block; }
.frame-bar {
  min-height: 39px;
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.34rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #1b1e21;
}
.frame-bar span { width: 8px; height: 8px; border-radius: 99px; background: #555b61; }
.frame-bar span:first-child { background: var(--accent); }
.frame-bar strong { margin-left: 0.45rem; color: #adb2b7; font-size: 0.68rem; font-weight: 700; }
.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 152px;
  padding: 0.78rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.9rem;
  background: rgba(27, 31, 35, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}
.floating-card span { display: block; color: var(--muted); font-size: 0.68rem; font-weight: 760; }
.floating-card strong { display: block; margin-top: 0.08rem; color: var(--text); font-size: 1rem; }
.floating-card-time { right: -1.2rem; bottom: -1.2rem; }
.floating-card-local { top: -1.3rem; left: -1.35rem; }

.promise-strip {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto clamp(6rem, 12vw, 10rem);
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.promise-strip > div { padding: 1.35rem 1.2rem; border-right: 1px solid var(--line); }
.promise-strip > div:first-child { padding-left: 0; }
.promise-strip > div:last-child { border-right: 0; }
.promise-strip strong { display: block; font-size: 0.94rem; }
.promise-strip span { display: block; margin-top: 0.18rem; color: var(--muted); font-size: 0.79rem; }

.section-heading { max-width: 760px; margin-bottom: 2.5rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .control-section h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
  text-wrap: balance;
}
.section-heading > p:last-child { margin: 1.05rem 0 0; color: var(--muted); font-size: 1.02rem; }
.workflow-section, .showcase, .feature-section, .platform-section, .control-section {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto clamp(6rem, 12vw, 10rem);
}
.workflow-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.workflow-grid article {
  min-height: 230px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.025), transparent), var(--surface);
}
.workflow-grid article:nth-child(2) { border-color: rgba(242, 170, 61, 0.38); background: linear-gradient(145deg, rgba(242, 170, 61, 0.12), transparent 62%), var(--surface); }
.workflow-grid span, .section-index { color: var(--accent); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.13em; }
.workflow-grid h3 { margin: 3.1rem 0 0.5rem; font-size: 1.35rem; }
.workflow-grid p { margin: 0; color: var(--muted); }

.showcase > .section-heading { margin-bottom: clamp(3rem, 7vw, 5rem); }
.showcase-row {
  margin-bottom: clamp(5rem, 10vw, 8rem);
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.showcase-row-reverse { grid-template-columns: minmax(0, 1.3fr) minmax(270px, 0.7fr); }
.showcase-row-reverse .showcase-copy { order: 2; }
.showcase-row-reverse .app-frame { order: 1; }
.showcase-copy h3 { margin: 0.65rem 0 1rem; font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.06; letter-spacing: -0.04em; text-wrap: balance; }
.showcase-copy > p { margin: 0; color: var(--muted); font-size: 1rem; }
.showcase-copy ul { margin: 1.4rem 0 0; padding: 0; list-style: none; }
.showcase-copy li { position: relative; padding-left: 1.35rem; color: var(--text-soft); font-size: 0.9rem; }
.showcase-copy li + li { margin-top: 0.52rem; }
.showcase-copy li::before { position: absolute; left: 0; color: var(--accent); content: "✓"; font-weight: 900; }
.showcase-row .app-frame { width: 100%; }
.everywhere-showcase {
  min-height: 620px;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.25rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 48%, rgba(242, 170, 61, 0.13), transparent 31rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 48%),
    var(--surface);
}
.everywhere-showcase .showcase-copy { position: relative; z-index: 8; }
.everywhere-showcase .text-link { display: inline-block; margin-top: 1.35rem; }
.sync-status {
  width: fit-content;
  max-width: 100%;
  margin-top: 1.45rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(146, 214, 164, 0.3);
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(146, 214, 164, 0.075);
}
.sync-status > span:last-child { display: grid; gap: 0.08rem; }
.sync-status strong { color: var(--success); font-size: 0.82rem; }
.sync-status small { color: var(--muted); font-size: 0.72rem; }
.sync-pulse {
  width: 0.58rem;
  height: 0.58rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(146, 214, 164, 0.48);
  animation: sync-pulse 2.8s ease-out infinite;
}
@keyframes sync-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(146, 214, 164, 0.46); }
  55% { box-shadow: 0 0 0 0.42rem rgba(146, 214, 164, 0); }
}

/* The production device-family render replaces the earlier hand-built collage. */
.device-family-visual {
  position: relative;
  min-width: 0;
  margin: 0 -2.5% -1.5rem -3%;
  align-self: center;
  isolation: isolate;
}
.device-family-visual::before {
  position: absolute;
  z-index: -1;
  right: 5%;
  bottom: 5%;
  left: 5%;
  height: 32%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.58);
  filter: blur(38px);
  content: "";
}
.device-family-visual > img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.3));
}
.device-family-visual figcaption {
  position: absolute;
  right: 4%;
  bottom: 2%;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(146, 214, 164, 0.25);
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  background: rgba(14, 17, 19, 0.82);
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}
.device-family-visual figcaption strong { color: var(--text); font-size: 0.72rem; }
.device-family-visual figcaption .sync-pulse { width: 0.45rem; height: 0.45rem; }

.feature-section > .section-heading { margin-bottom: 2.5rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.feature-card {
  min-height: 235px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.feature-card h3 { max-width: 420px; margin: 2.55rem 0 0.65rem; font-size: 1.22rem; letter-spacing: -0.02em; }
.feature-card p { max-width: 620px; margin: 0; color: var(--muted); font-size: 0.92rem; }
.feature-number { color: var(--accent); font-size: 0.73rem; font-weight: 900; letter-spacing: 0.13em; }

.control-section {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(242, 170, 61, 0.32);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 8% 0%, rgba(242, 170, 61, 0.17), transparent 25rem),
    var(--surface);
}
.control-section > div > p:last-child { margin: 1.15rem 0 0; color: var(--muted); }
.control-section ul { margin: 0; padding: 0; list-style: none; }
.control-section li { padding: 1.1rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 145px 1fr; gap: 1.2rem; }
.control-section li:first-child { padding-top: 0; }
.control-section li:last-child { padding-bottom: 0; border-bottom: 0; }
.control-section strong { font-size: 0.9rem; }
.control-section span { color: var(--muted); font-size: 0.88rem; }

.platform-section { padding-top: 0.5rem; }
.platform-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.platform-card {
  min-height: 230px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
}
.platform-card-primary { border-color: rgba(242, 170, 61, 0.42); background: linear-gradient(145deg, rgba(242, 170, 61, 0.13), transparent 60%), var(--surface); }
.platform-label { margin: 0 0 1.3rem; color: var(--accent); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.15em; text-transform: none; }
.platform-status { letter-spacing: 0.05em; text-transform: none; }
.platform-card h3 { margin: 0; font-size: 1.35rem; letter-spacing: -0.025em; }
.platform-card .button { width: 100%; margin-top: auto; }

.document-shell { width: min(calc(100% - 2.5rem), 900px); margin: 0 auto; padding: clamp(4rem, 8vw, 7rem) 0 7rem; }
.document-header { margin-bottom: 2.8rem; padding-bottom: 1.7rem; border-bottom: 1px solid var(--line); }
.document-header h1 { margin: 0 0 0.7rem; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.03; letter-spacing: -0.05em; text-wrap: balance; }
.document-header p { margin: 0; color: var(--muted); }
.document-content h1 { display: none; }
.document-content h2 { margin: 2.65rem 0 0.7rem; font-size: 1.4rem; line-height: 1.25; }
.document-content h3 { margin: 1.9rem 0 0.55rem; font-size: 1.1rem; }
.document-content p { margin: 0.75rem 0; color: var(--text-soft); }
.document-content ul, .document-content ol { margin: 0.75rem 0; padding-left: 1.4rem; color: var(--text-soft); }
.document-content li + li { margin-top: 0.35rem; }
.document-content code { padding: 0.12rem 0.32rem; border: 1px solid var(--line); border-radius: 0.35rem; background: var(--surface-soft); color: #ffd18c; font: 0.92em ui-monospace, SFMono-Regular, Consolas, monospace; }
.document-content blockquote { margin: 1.3rem 0; padding: 0.9rem 1.05rem; border-left: 3px solid var(--accent); background: var(--accent-soft); color: #ead7b9; }

.release-shell { max-width: 960px; }
.release-list { display: grid; gap: 1rem; }
.release-entry { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.release-entry[open] { border-color: var(--line-strong); }
.release-entry summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; cursor: pointer; list-style: none; }
.release-entry summary::-webkit-details-marker { display: none; }
.release-entry summary:hover, .release-entry summary:focus-visible { background: var(--surface-soft); }
.release-entry summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.release-version { font-size: clamp(1.2rem, 3vw, 1.65rem); font-weight: 800; letter-spacing: -0.03em; }
.release-toggle { width: 0.65rem; height: 0.65rem; flex: none; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg); transition: transform 160ms ease; }
.release-entry[open] .release-toggle { transform: rotate(225deg); }
.release-content { padding: 0.25rem 1.5rem 1.75rem; border-top: 1px solid var(--line); }
.release-content h2:first-child { margin-top: 1.4rem; }
.release-content h2 { color: var(--text); }
.release-content li { line-height: 1.6; }

.site-footer { border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer-inner {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
  padding: 2.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-brand { color: var(--text); font-size: 1.05rem; font-weight: 850; text-decoration: none; }
.footer-inner p { margin: 0.28rem 0 0; color: var(--muted); font-size: 0.82rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.9rem; }
.footer-links a { color: var(--muted); font-size: 0.82rem; }
.footer-link-button { border: 0; padding: 0; background: transparent; color: var(--muted); font: inherit; font-size: 0.82rem; text-decoration: underline; cursor: pointer; }

.telemetry-consent {
  position: fixed;
  z-index: 60;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  width: min(calc(100% - 2rem), 900px);
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(242, 170, 61, 0.42);
  border-radius: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.1rem;
  background: rgba(21, 24, 27, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(16px);
}
.telemetry-consent[hidden] { display: none; }
.telemetry-consent > div:first-child { min-width: 0; }
.telemetry-consent h2 { margin: 0 0 0.28rem; font-size: 0.98rem; }
.telemetry-consent p { margin: 0; color: var(--muted); font-size: 0.8rem; overflow-wrap: anywhere; }
.telemetry-consent-actions { min-width: 0; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.5rem; }
.telemetry-consent-actions .button { min-width: 0; min-height: 42px; padding: 0.55rem 0.85rem; cursor: pointer; white-space: nowrap; }

@media (max-width: 1080px) {
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero-content { max-width: 800px; }
  .hero-visual { width: min(100%, 900px); margin: 1rem auto 0; }
  .visual-glow { inset: -8% 0 -10%; }
  .app-frame-hero { transform: none; }
  .floating-card-time { right: 0.8rem; }
  .floating-card-local { left: 0.8rem; }
  .showcase-row, .showcase-row-reverse { grid-template-columns: 1fr; }
  .showcase-row-reverse .showcase-copy, .showcase-row-reverse .app-frame { order: initial; }
  .showcase-copy { max-width: 720px; }
  .everywhere-showcase { grid-template-columns: 1fr; }
  .device-family-visual { width: min(100%, 900px); margin: -0.5rem auto -2rem; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .platform-card:last-child { grid-column: 1 / -1; min-height: 230px; }
}

@media (max-width: 760px) {
  .nav { width: min(calc(100% - 1.5rem), var(--max)); min-height: 66px; }
  .hero, .promise-strip, .workflow-section, .showcase, .feature-section, .platform-section, .control-section, .document-shell, .footer-inner { width: min(calc(100% - 1.5rem), var(--max)); }
  .hero, .hero-content, .hero-copy, .hero h1, .hero-actions { min-width: 0; }
  .hero { padding-top: 3.7rem; gap: 2.6rem; }
  .hero h1 { width: 100%; max-width: 100%; font-size: clamp(2.65rem, 12vw, 4.3rem); line-height: 0.98; }
  .floating-card { display: none; }
  .promise-strip { grid-template-columns: 1fr 1fr; }
  .promise-strip > div { padding: 1rem; border-bottom: 1px solid var(--line); }
  .promise-strip > div:first-child { padding-left: 1rem; }
  .promise-strip > div:nth-child(2) { border-right: 0; }
  .promise-strip > div:nth-child(n+3) { border-bottom: 0; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-grid article { min-height: 0; }
  .workflow-grid h3 { margin-top: 1.8rem; }
  .everywhere-showcase { min-height: 0; grid-template-columns: 1fr; align-content: start; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .control-section { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card, .platform-card:last-child { min-height: 220px; grid-column: auto; }
  .release-entry summary { padding: 1rem 1.1rem; }
  .release-content { padding: 0.15rem 1.1rem 1.4rem; }
}

@media (max-width: 600px) {
  .nav-links a[href="#urun"], .nav-links a[href="#ozellikler"] { display: none; }
  .nav-links { min-width: 0; gap: 0; }
  .hero { padding-top: 3rem; padding-bottom: 3.8rem; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.35rem); letter-spacing: -0.055em; text-wrap: wrap; overflow-wrap: anywhere; }
  .hero-copy { width: 100%; max-width: 100%; font-size: 1rem; overflow-wrap: anywhere; }
  .hero-copy p { max-width: 100%; overflow-wrap: anywhere; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; grid-template-columns: 1fr 1fr; }
  .frame-bar { min-height: 30px; }
  .frame-bar strong { display: none; }
  .promise-strip { margin-bottom: 5rem; }
  .section-heading h2, .control-section h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .showcase-row { margin-bottom: 5rem; }
  .everywhere-showcase { min-height: 0; padding: 1.4rem; }
  .device-family-visual { width: 116%; margin: 0 -8% -0.75rem; }
  .device-family-visual figcaption { position: static; width: fit-content; margin: -0.15rem auto 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; grid-column: auto; }
  .feature-card h3 { margin-top: 1.8rem; }
  .control-section { padding: 1.4rem; }
  .control-section li { grid-template-columns: 1fr; gap: 0.25rem; }
  .footer-inner { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .telemetry-consent { right: 0.65rem; bottom: 0.65rem; left: 0.65rem; width: auto; max-width: none; padding: 0.9rem; grid-template-columns: 1fr; align-items: stretch; }
  .telemetry-consent-actions { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .telemetry-consent-actions .button { width: 100%; white-space: normal; }
}

@media (max-width: 520px) {
  .brand span { display: none; }
  .nav-links { display: none; }
  .nav-links a { padding-inline: 0.55rem; }
  .hero-content { width: min(100%, 470px); max-width: 470px; }
  .hero h1 { max-width: 470px; font-size: clamp(2.1rem, 9.5vw, 3.15rem); }
  .trust-list { grid-template-columns: 1fr; }
  .promise-strip { grid-template-columns: 1fr; }
  .promise-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .promise-strip > div:nth-child(n+3) { border-bottom: 1px solid var(--line); }
  .promise-strip > div:last-child { border-bottom: 0; }
  .telemetry-consent { width: auto; max-width: min(calc(100% - 1.3rem), 470px); margin-inline: auto; max-height: calc(100dvh - 1.3rem); overflow: auto; }
  .telemetry-consent-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .app-frame-hero { transform: none; }
  .sync-pulse { animation: none !important; }
}
