:root {
  --night-950: #040915;
  --night-900: #071126;
  --night-850: #0a1730;
  --night-800: #0d1d39;
  --panel: rgba(13, 29, 57, 0.72);
  --panel-soft: rgba(17, 37, 70, 0.54);
  --gold-300: #f8db91;
  --gold-400: #f3c96b;
  --gold-500: #dca846;
  --cyan-300: #83d5e7;
  --text: #f7f8fc;
  --muted: #b3bfd2;
  --soft: #7f8da7;
  --border: rgba(243, 201, 107, 0.2);
  --border-soft: rgba(179, 191, 210, 0.16);
  --danger-soft: rgba(255, 176, 106, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shell: 1180px;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/SpaceGrotesk-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/cormorant-garamond-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/cormorant-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/cormorant-garamond-italic-latin-ext.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/cormorant-garamond-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(32, 84, 118, 0.28), transparent 28rem),
    radial-gradient(circle at 10% 38%, rgba(222, 168, 70, 0.08), transparent 22rem),
    linear-gradient(180deg, var(--night-900), var(--night-950));
  font-family:
    "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 20% 20%, #fff 0 0.6px, transparent 0.8px),
    radial-gradient(circle at 70% 45%, #fff 0 0.5px, transparent 0.8px);
  background-size: 93px 93px, 147px 147px;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

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

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

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

.narrow {
  max-width: 820px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 18px;
  color: var(--night-950);
  background: var(--gold-300);
  border-radius: 12px;
  font-weight: 800;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 9, 21, 0.78);
  backdrop-filter: blur(22px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 13px;
  box-shadow: 0 8px 28px rgba(220, 168, 70, 0.18);
}

.brand-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: hidden;
  place-items: center;
  border-radius: 13px;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: flex;
  align-items: baseline;
  line-height: 1.1;
  white-space: nowrap;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand-name small {
  margin-left: 8px;
  color: var(--soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--gold-300);
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 10px 16px;
  color: var(--night-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border: 1px solid rgba(248, 219, 145, 0.45);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(220, 168, 70, 0.16);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta:hover {
  filter: brightness(1.05);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.nav-toggle span[aria-hidden] {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 9px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 76px);
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
  padding-block: 76px 96px;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan-300);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", ui-sans-serif, sans-serif;
  margin-top: 0;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.2vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 .gold,
.gold {
  color: var(--gold-300);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  letter-spacing: -0.015em;
}

.lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #161106;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(220, 168, 70, 0.22);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.availability-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.availability-card {
  display: grid;
  min-width: 160px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
}

.availability-card span {
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-card strong {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.83rem;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.store-links a,
.store-links img {
  min-height: 48px;
}

.hero-visual {
  position: relative;
  justify-self: center;
}

.hero-visual::before {
  position: absolute;
  inset: 12% -20% 5%;
  z-index: -1;
  content: "";
  background: radial-gradient(circle, rgba(243, 201, 107, 0.19), transparent 65%);
  filter: blur(18px);
}

.device {
  position: relative;
  width: min(340px, 82vw);
  aspect-ratio: 0.55;
  padding: 12px;
  background: linear-gradient(150deg, #263958, #080e1e 30%, #030712);
  border: 1px solid rgba(248, 219, 145, 0.24);
  border-radius: 54px;
  box-shadow: var(--shadow);
}

.device::before {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 2;
  width: 31%;
  height: 24px;
  content: "";
  background: #02040a;
  border-radius: 999px;
  transform: translateX(-50%);
}

.device-screen {
  position: relative;
  display: flex;
  height: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 27%, rgba(237, 191, 94, 0.16), transparent 29%),
    linear-gradient(180deg, #0a1730, #050b18);
  border-radius: 43px;
}

.device-screen::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.35;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 42px;
}

.device-content {
  position: relative;
  z-index: 1;
}

.device-content img {
  width: 136px;
  margin: 0 auto 28px;
  border-radius: 34px;
  box-shadow: 0 18px 50px rgba(220, 168, 70, 0.18);
}

.device-content span {
  display: block;
  color: var(--cyan-300);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.device-content strong {
  display: block;
  margin-top: 10px;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.12;
}

.visual-caption {
  max-width: 290px;
  margin: 18px auto 0;
  color: var(--soft);
  font-size: 0.76rem;
  text-align: center;
}

.preview-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-gallery figure {
  width: min(290px, 70vw);
  margin: 0 -48px 0 0;
  overflow: hidden;
  background: var(--night-950);
  border: 8px solid #050a15;
  border-radius: 38px;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.preview-gallery figure:nth-child(2) {
  z-index: 2;
  transform: translateY(14px) rotate(3deg);
}

.preview-gallery figure:nth-child(3) {
  transform: translateY(-8px) rotate(7deg);
}

.section {
  padding-block: 108px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 48px;
}

.section-heading p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.trust-card,
.contact-card,
.legal-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: linear-gradient(145deg, var(--panel), var(--panel-soft));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
}

.feature-card {
  min-height: 286px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.feature-card:hover {
  border-color: rgba(243, 201, 107, 0.34);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.feature-card::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(circle, rgba(243, 201, 107, 0.1), transparent 70%);
}

.feature-index {
  position: absolute;
  top: 29px;
  right: 26px;
  color: rgba(179, 191, 210, 0.64);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.feature-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 30px;
  color: var(--gold-300);
  background:
    radial-gradient(circle at 50% 38%, rgba(248, 219, 145, 0.13), transparent 55%),
    rgba(243, 201, 107, 0.045);
  border: 1px solid rgba(243, 201, 107, 0.23);
  border-radius: 18px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.04),
    0 12px 30px rgba(220, 168, 70, 0.08);
}

.feature-icon::before,
.feature-icon::after,
.feature-icon > span,
.feature-icon > span::before,
.feature-icon > span::after {
  position: absolute;
  display: block;
  content: "";
}

.feature-icon-sky::before {
  width: 27px;
  height: 27px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  opacity: 0.82;
}

.feature-icon-sky::after {
  top: 13px;
  right: 12px;
  width: 10px;
  height: 10px;
  background: var(--gold-300);
  clip-path: polygon(50% 0, 61% 37%, 100% 50%, 61% 63%, 50% 100%, 39% 63%, 0 50%, 39% 37%);
  filter: drop-shadow(0 0 5px rgba(248, 219, 145, 0.65));
}

.feature-icon-sky > span {
  width: 4px;
  height: 4px;
  background: var(--cyan-300);
  border-radius: 50%;
  box-shadow:
    -15px -9px 0 -1px rgba(131, 213, 231, 0.72),
    12px 14px 0 -1px rgba(248, 219, 145, 0.7);
}

.feature-icon-guide::before {
  width: 28px;
  height: 28px;
  border: 1.5px solid currentColor;
  border-radius: 9px 15px 9px 15px;
  opacity: 0.78;
  transform: rotate(45deg);
}

.feature-icon-guide::after {
  width: 17px;
  height: 17px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  filter: drop-shadow(0 0 7px rgba(248, 219, 145, 0.55));
}

.feature-icon-guide > span {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(131, 213, 231, 0.7), transparent);
  transform: rotate(-38deg);
}

.feature-icon-coffee::before {
  top: 24px;
  left: 14px;
  width: 27px;
  height: 17px;
  border: 1.7px solid currentColor;
  border-top-color: rgba(248, 219, 145, 0.56);
  border-radius: 3px 3px 13px 13px;
}

.feature-icon-coffee::after {
  top: 27px;
  right: 10px;
  width: 10px;
  height: 10px;
  border: 1.7px solid currentColor;
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.feature-icon-coffee > span {
  top: 11px;
  left: 23px;
  width: 9px;
  height: 14px;
  border-left: 1.5px solid var(--cyan-300);
  border-radius: 50%;
  transform: rotate(18deg);
}

.feature-icon-coffee > span::before {
  top: 2px;
  left: 9px;
  width: 7px;
  height: 11px;
  border-left: 1.5px solid rgba(248, 219, 145, 0.75);
  border-radius: 50%;
  transform: rotate(15deg);
}

.feature-icon-journal::before {
  top: 14px;
  left: 13px;
  width: 31px;
  height: 31px;
  border: 1.5px solid currentColor;
  border-radius: 6px 10px 10px 6px;
  box-shadow: inset 5px 0 0 rgba(243, 201, 107, 0.07);
}

.feature-icon-journal::after {
  top: 20px;
  left: 27px;
  width: 1px;
  height: 22px;
  background: rgba(243, 201, 107, 0.42);
}

.feature-icon-journal > span {
  top: 22px;
  left: 31px;
  width: 10px;
  height: 16px;
  border-left: 1.8px solid var(--cyan-300);
  border-radius: 65% 0 0 45%;
  transform: rotate(20deg);
}

.feature-icon-journal > span::after {
  top: -3px;
  left: -3px;
  width: 5px;
  height: 5px;
  background: var(--gold-300);
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(248, 219, 145, 0.65);
}

.feature-card p,
.trust-card p,
.contact-card p,
.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.journey-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  padding: clamp(30px, 5vw, 64px);
  background:
    radial-gradient(circle at 10% 50%, rgba(243, 201, 107, 0.12), transparent 26%),
    rgba(7, 17, 38, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

.step > span {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #171107;
  background: var(--gold-300);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 950;
}

.step strong {
  display: block;
  margin-bottom: 3px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 18px 20px 18px 50px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

.trust-list li::before {
  margin-left: -30px;
  margin-right: 14px;
  color: var(--gold-300);
  content: "✦";
}

.boundary {
  margin-top: 26px;
  padding: 22px;
  background: rgba(131, 213, 231, 0.055);
  border-left: 3px solid var(--cyan-300);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.boundary strong {
  color: var(--cyan-300);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

details {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

summary {
  padding: 20px 54px 20px 20px;
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 22px;
  color: var(--muted);
}

.final-cta {
  padding: clamp(36px, 6vw, 72px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 201, 107, 0.15), transparent 52%),
    rgba(13, 29, 57, 0.62);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
}

.final-cta .availability-grid,
.final-cta .store-links {
  justify-content: center;
}

.page-hero {
  padding-block: 96px 48px;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.page-hero > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.content-section {
  padding-block: 24px 96px;
}

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

.content-stack {
  display: grid;
  gap: 18px;
}

.content-stack h2 {
  margin-top: 48px;
  font-size: 1.8rem;
}

.content-stack p,
.content-stack li {
  color: var(--muted);
}

.content-stack a:not(.button),
.legal-card a,
.contact-card a {
  color: var(--gold-300);
}

.draft-notice {
  display: flex;
  gap: 12px 22px;
  align-items: center;
  margin: 0 auto 28px;
  padding: 16px 20px;
  color: #ffd2aa;
  background: var(--danger-soft);
  border: 1px solid rgba(255, 176, 106, 0.28);
  border-radius: var(--radius-md);
}

.draft-notice span {
  color: #e7c3a5;
  font-size: 0.86rem;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) 1fr;
  gap: 18px;
  padding-block: 12px;
  border-bottom: 1px solid var(--border-soft);
}

.meta-list strong {
  color: var(--text);
}

.deletion-steps {
  counter-reset: deletion;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deletion-steps li {
  position: relative;
  padding: 20px 20px 20px 64px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  counter-increment: deletion;
}

.deletion-steps li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--night-950);
  content: counter(deletion);
  background: var(--gold-300);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.site-footer {
  margin-top: 40px;
  padding-top: 64px;
  background: rgba(2, 5, 12, 0.62);
  border-top: 1px solid var(--border-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand p {
  margin: 3px 0 0;
  color: var(--soft);
  font-size: 0.8rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--soft);
  border-top: 1px solid var(--border-soft);
  font-size: 0.72rem;
}

@media (max-width: 980px) {
  .brand-name small {
    display: none;
  }

  .site-header .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }

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

  .journey-panel {
    grid-template-columns: 1fr;
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .site-header .nav-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    background: rgba(6, 14, 30, 0.98);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    padding: 11px 12px;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 64px 88px;
  }

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

  .hero-copy .lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-copy .availability-grid {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 22px;
  }

  .feature-grid,
  .trust-layout,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 80px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-bottom {
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.8rem;
  }

  .brand small {
    display: none;
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .availability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .availability-card {
    min-width: 0;
  }

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

  .device {
    width: min(312px, 88vw);
  }

  .draft-notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .meta-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

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

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

  .feature-card:hover {
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .button {
    display: none !important;
  }

  body {
    color: #111;
    background: #fff;
  }

  .content-stack p,
  .content-stack li,
  .page-hero > p:not(.eyebrow) {
    color: #222;
  }
}

/* Sessiz Gözlemevi shell for support and legal pages. */
body:not(.home-page) {
  --night-950: #050a13;
  --night-900: #09111f;
  --panel: rgba(13, 23, 39, 0.76);
  --panel-soft: rgba(17, 29, 46, 0.58);
  --gold-300: #e5c173;
  --gold-400: #cba35b;
  --gold-500: #af8039;
  --cyan-300: #93c0c7;
  --text: #f4efe2;
  --muted: #b8c0cb;
  --soft: #7f8a9b;
  --border: rgba(203, 163, 91, 0.22);
  --border-soft: rgba(244, 239, 226, 0.12);
  color: var(--text);
  background:
    radial-gradient(circle at 82% 5%, rgba(43, 85, 112, 0.22), transparent 31rem),
    radial-gradient(circle at 10% 38%, rgba(166, 123, 49, 0.07), transparent 24rem),
    #09111f;
}

body:not(.home-page)::before {
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

body:not(.home-page) .site-header,
body:not(.home-page) main,
body:not(.home-page) .site-footer {
  position: relative;
  z-index: 1;
}

body:not(.home-page) .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom-color: rgba(244, 239, 226, 0.1);
  background: rgba(7, 11, 22, 0.84);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  transform: translateZ(0);
}

body:not(.home-page) main { padding-top: 80px; }

body:not(.home-page) .header-inner { min-height: 80px; }
body:not(.home-page) .brand-icon { width: 50px; height: 50px; flex-basis: 50px; border: 1px solid rgba(203, 163, 91, 0.34); border-radius: 16px; }
body:not(.home-page) .brand-name { display: block; color: #f4efe2; font-size: 1.1rem; font-weight: 800; letter-spacing: -0.05em; }
body:not(.home-page) .brand-name small { display: block; margin-top: 4px; color: #7f8a9b; font-size: 0.54rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
body:not(.home-page) .site-nav { gap: 28px; }
body:not(.home-page) .site-nav a { color: rgba(244, 239, 226, 0.62); font-size: 0.78rem; font-weight: 700; }
body:not(.home-page) .site-nav a:hover { color: #f4efe2; }
body:not(.home-page) .nav-cta { padding: 13px 22px; color: #101827; background: #e2bb64; border-radius: 15px; box-shadow: 0 0 25px rgba(226, 187, 100, 0.14); }
body:not(.home-page) .nav-cta:hover { color: #101827; background: #efcb78; }

body:not(.home-page) .page-hero {
  position: relative;
  max-width: 920px;
  padding-top: clamp(88px, 11vw, 150px);
  padding-bottom: 76px;
  border-bottom: 1px solid rgba(244, 239, 226, 0.12);
}

body:not(.home-page) .page-hero::after {
  position: absolute;
  right: -9vw;
  bottom: -42px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(203, 163, 91, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 64px rgba(203, 163, 91, 0.06);
}

body:not(.home-page) .page-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #93c0c7;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body:not(.home-page) .page-hero .eyebrow::before { width: 32px; height: 1px; content: ""; background: #cba35b; }
body:not(.home-page) .page-hero h1 { max-width: 800px; margin: 0; color: #f4efe2; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(3.4rem, 7vw, 5.3rem); font-weight: 600; line-height: 0.92; letter-spacing: -0.05em; text-wrap: balance; }
body:not(.home-page) .page-hero > p:not(.eyebrow) { max-width: 680px; margin-top: 28px; color: #b8c0cb; font-size: 0.94rem; line-height: 1.86; }
body:not(.home-page) .content-section { max-width: 920px; padding-top: 70px; padding-bottom: 118px; }
body:not(.home-page) .content-stack { gap: 22px; }
body:not(.home-page) .content-stack h2 { margin-top: 34px; color: #f4efe2; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2rem, 4vw, 2.85rem); font-weight: 600; line-height: 1; letter-spacing: -0.035em; }
body:not(.home-page) .content-stack h3 { color: #e9dfcc; font-size: 1rem; }
body:not(.home-page) .content-stack p,
body:not(.home-page) .content-stack li { color: #b8c0cb; font-size: 0.91rem; line-height: 1.82; }
body:not(.home-page) .legal-card,
body:not(.home-page) .contact-card { padding: clamp(28px, 5vw, 54px); border: 1px solid rgba(244, 239, 226, 0.12); border-radius: 0; background: rgba(13, 23, 39, 0.74); box-shadow: 0 28px 74px rgba(0, 0, 0, 0.18); }
body:not(.home-page) .contact-card { border-top-color: rgba(203, 163, 91, 0.38); }
body:not(.home-page) .content-grid { gap: 18px; }
body:not(.home-page) .button.primary { color: #101827; background: #e2bb64; }
body:not(.home-page) .button.secondary { color: #e9dfcc; border-color: rgba(203, 163, 91, 0.35); background: rgba(203, 163, 91, 0.06); }
body:not(.home-page) .meta-list li,
body:not(.home-page) .deletion-steps li { border-color: rgba(244, 239, 226, 0.12); border-radius: 0; background: rgba(255, 255, 255, 0.02); }
body:not(.home-page) .deletion-steps li::before { color: #101827; background: #e2bb64; }

body:not(.home-page) .site-footer { margin-top: 0; background: #050a13; border-top-color: rgba(244, 239, 226, 0.1); }
body:not(.home-page) .footer-grid { grid-template-columns: 1.15fr 1fr 1fr; gap: 48px; }
body:not(.home-page) .footer-brand strong { color: #f4efe2; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; font-weight: 600; }
body:not(.home-page) .footer-brand p { color: #7f8a9b; }
body:not(.home-page) .site-footer nav a { color: #9ca6b4; }
body:not(.home-page) .site-footer nav a:hover { color: #e5c173; }

@media (max-width: 760px) {
  body:not(.home-page) main { padding-top: 68px; }
  body:not(.home-page) .header-inner { min-height: 68px; }
  body:not(.home-page) .brand-icon { width: 44px; height: 44px; flex-basis: 44px; border-radius: 14px; }
  body:not(.home-page) .brand-name { font-size: 0.98rem; }
  body:not(.home-page) .page-hero { padding-top: 72px; padding-bottom: 56px; }
  body:not(.home-page) .page-hero::after { display: none; }
  body:not(.home-page) .page-hero h1 { font-size: clamp(3rem, 13vw, 4rem); }
  body:not(.home-page) .content-section { padding-top: 48px; padding-bottom: 88px; }
  body:not(.home-page) .footer-grid { grid-template-columns: 1fr; }
}
