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

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

:root {
  --primary: #24332a;
  --primary-light: #3c5443;
  --primary-lighter: #6b8577;
  --cream: #faf7f0;
  --cream-2: #f2ecdf;
  --ink: #1b241c;
  --ink-soft: #566056;
  --accent: #e8b04b;
  --error: #b3453c;
  --radius: 20px;
  --shadow: 0 20px 60px -20px rgba(36, 51, 42, 0.35);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --heading-font: "Gadey", "Roketto", "Fraunces", Georgia, serif;
  --heading-tracking: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: var(--heading-font);
  color: var(--primary);
  font-weight: 500;
  letter-spacing: var(--heading-tracking);
}

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

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

/* ---------- splash: quick logo intro ---------- */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.6s var(--ease);
}

.splash.splash-hide {
  opacity: 0;
  pointer-events: none;
}

.splash-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.92);
  animation:
    splash-image-in 0.8s var(--ease) forwards,
    splash-image-pulse 1.8s ease-in-out 0.8s infinite;
}

@keyframes splash-image-in {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes splash-image-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.85; }
}

/* ---------- layout helpers ---------- */

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  z-index: 2;
  padding: 140px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 18px;
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
  background: transparent;
  transition: padding 0.35s var(--ease);
}

.nav.scrolled {
  padding: 18px 40px;
}

.nav-brand {
  display: flex;
  align-items: center;
  position: relative;
  width: 30px;
  height: 30px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  height: 24px;
  width: auto;
}

.nav-logo {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.35s var(--ease);
}

.nav-logo-dark {
  opacity: 0;
}

.nav.on-light .nav-logo-light {
  opacity: 0;
}

.nav.on-light .nav-logo-dark {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 247, 240, 0.92);
  transition: color 0.35s var(--ease);
}

.nav.on-light .nav-links {
  color: var(--ink-soft);
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--cream);
}

.nav.on-light .nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  color: var(--cream);
  font-weight: 600;
  transition: color 0.35s var(--ease);
}

.nav.on-light .nav-cta {
  color: var(--primary);
}

.nav-cta .arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

.nav-cta:hover .arrow {
  transform: translateX(4px);
}

/* ---------- reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- photo hero sections ---------- */

.photo-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0 60px;
}

.photo-hero-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: 68% center;
  will-change: transform;
}

.photo-hero-right .photo-hero-bg {
  background-position: 35% center;
}

.photo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 22, 17, 0.68) 0%, rgba(17, 22, 17, 0.38) 42%, rgba(17, 22, 17, 0.08) 72%);
}

.photo-hero-overlay.reverse {
  background: linear-gradient(270deg, rgba(17, 22, 17, 0.62) 0%, rgba(17, 22, 17, 0.32) 42%, rgba(17, 22, 17, 0.06) 72%);
}

.photo-hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.photo-hero-content.align-right {
  margin-left: auto;
  text-align: right;
}

.photo-hero-title {
  font-family: var(--heading-font);
  color: var(--cream);
  font-weight: 500;
  letter-spacing: var(--heading-tracking);
  font-size: clamp(60px, 8vw, 108px);
  line-height: 0.98;
  white-space: pre-line;
  margin-bottom: 28px;
}

.photo-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(250, 247, 240, 0.88);
  max-width: 420px;
  margin-bottom: 32px;
  transition-delay: 0.1s;
}

.photo-hero-content.align-right .photo-hero-sub {
  margin-left: auto;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(36, 51, 42, 0.3);
  transition-delay: 0.2s;
  transition: border-color 0.25s, gap 0.25s var(--ease);
}

.hero-link:hover {
  border-color: var(--primary);
  gap: 12px;
}

.hero-link .arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

.hero-link.light {
  color: var(--cream);
  border-bottom-color: rgba(250, 247, 240, 0.4);
}

.hero-link.light:hover {
  border-color: var(--cream);
}

/* ---------- what is bluumie: product section ---------- */

.product-section {
  overflow: hidden;
}

.product-copy-centered {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.product-copy-centered h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 22px;
}

.product-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 26px;
  transition-delay: 0.05s;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.product-features li {
  font-size: 15px;
  color: var(--ink);
  transition-delay: 0.1s;
}

.platform-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  transition-delay: 0.15s;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.platform-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.platform-badge-soon {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid rgba(36, 51, 42, 0.25);
}

.platform-badge-download {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(36, 51, 42, 0.35);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.platform-badge-download:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.photo-hero-widget {
  position: absolute;
  right: 240px;
  top: 46%;
  transform: translateY(-50%);
  z-index: 2;
}

.widget-callout {
  position: absolute;
  right: 300px;
  top: 29%;
  width: 190px;
  text-align: right;
  color: var(--cream);
  z-index: 3;
  pointer-events: none;
}

.widget-callout-text {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 4px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.widget-callout-arrow {
  width: 46px;
  height: 38px;
  margin-left: auto;
  opacity: 0.85;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.lock-widget {
  width: 240px;
  background: rgba(20, 26, 20, 0.45);
  border: 1px solid rgba(250, 247, 240, 0.22);
  border-radius: 22px;
  padding: 16px 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.5);
  color: var(--cream);
}

.lock-widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.lock-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.lock-name {
  font-size: 14px;
  font-weight: 700;
  flex: 1;
}

.lock-widget-emoji,
.lock-status-text,
.lock-time-ago {
  transition: opacity 0.4s var(--ease), filter 0.4s var(--ease), transform 0.4s var(--ease);
}

.lock-widget-emoji {
  font-size: 16px;
}

.lock-status-text {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 4px;
}

.lock-time-ago {
  font-size: 12px;
  opacity: 0.7;
}

.lock-widget.swap .lock-widget-emoji,
.lock-widget.swap .lock-status-text,
.lock-widget.swap .lock-time-ago {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(6px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.btn-primary {
  background: var(--primary);
  color: var(--cream);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -10px rgba(36, 51, 42, 0.5);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 70px;
  position: relative;
  z-index: 2;
  transition-delay: 0.3s;
}

.scroll-cue .scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--primary), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}

.scroll-cue.light {
  position: absolute;
  left: 50%;
  bottom: 44px;
  margin-top: 0;
  transform: translateX(-50%);
  color: rgba(250, 247, 240, 0.85);
  z-index: 2;
}

.scroll-cue.light .scroll-line {
  background: linear-gradient(var(--cream), transparent);
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---------- not-a-feed ---------- */

.not-section {
  background: var(--primary);
  color: var(--cream);
  border-radius: 48px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 0;
}

.not-section h2 {
  color: var(--cream);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 56px;
  text-align: center;
}

.not-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.not-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.not-card:nth-child(2) { transition-delay: 0.1s; }
.not-card:nth-child(3) { transition-delay: 0.2s; }

.not-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
}

.not-icon {
  font-size: 26px;
  display: inline-block;
  margin-bottom: 16px;
  opacity: 0.7;
}

.not-card h3 {
  color: var(--cream);
  font-size: 20px;
  margin-bottom: 10px;
}

.not-card p {
  color: rgba(250, 247, 240, 0.7);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- how it works ---------- */

.how h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 64px;
  max-width: 560px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step:nth-child(2) { transition-delay: 0.12s; }
.step:nth-child(3) { transition-delay: 0.24s; }

.step-num {
  font-family: "Fraunces", serif;
  font-size: 46px;
  color: var(--primary-lighter);
  opacity: 0.5;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.step p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- status chips ---------- */

.statuses {
  background: var(--cream-2);
  border-radius: 48px;
  max-width: 1240px;
  margin: 0 auto;
}

.statuses h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 48px;
  max-width: 560px;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(36, 51, 42, 0.08);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  box-shadow: 0 8px 20px -14px rgba(36, 51, 42, 0.4);
  opacity: 0;
  transform: translateY(20px) scale(0.94);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.25s, box-shadow 0.25s;
}

.status-chip.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.status-chip:hover {
  background: var(--primary);
  color: var(--cream);
  box-shadow: 0 14px 28px -12px rgba(36, 51, 42, 0.5);
  transform: translateY(-4px) scale(1.03);
}

.status-chip .emoji {
  font-size: 18px;
}

/* ---------- privacy ---------- */

.privacy-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.privacy h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 30px;
}

.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.privacy-list li:nth-child(2) { transition-delay: 0.1s; }
.privacy-list li:nth-child(3) { transition-delay: 0.2s; }

.privacy-list .privacy-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.privacy-visual {
  display: flex;
  justify-content: center;
}

.glance-counter {
  background: var(--primary);
  border-radius: 32px;
  padding: 50px 40px;
  display: flex;
  gap: 40px;
  box-shadow: var(--shadow);
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.counter-num {
  font-family: "Fraunces", serif;
  font-size: 48px;
  color: var(--cream);
}

.counter-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 247, 240, 0.6);
}

/* ---------- cta ---------- */

.cta {
  text-align: center;
}

.cta-inner {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-logo {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  animation: spin-in 1s var(--ease);
}

@keyframes spin-in {
  from { transform: rotate(-20deg) scale(0.8); opacity: 0; }
  to { transform: rotate(0) scale(1); opacity: 1; }
}

.cta h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.cta p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 36px;
}

.cta-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 420px;
}

.cta-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(36, 51, 42, 0.2);
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color 0.25s;
}

.cta-form input:focus {
  border-color: var(--primary);
}

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.8;
}

.cta-note.success {
  color: var(--primary);
  font-weight: 600;
}

.cta-note.error {
  color: var(--error);
  font-weight: 600;
  opacity: 1;
}

/* ---------- footer ---------- */

.footer {
  padding: 50px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 16px;
}

.footer p {
  font-size: 13px;
  color: var(--ink-soft);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.footer-credit .heart {
  color: var(--primary);
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

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

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  font-size: 12.5px;
}

.footer-legal a,
.footer-legal button {
  border: none;
  background: transparent;
  font: inherit;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--primary);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(36, 51, 42, 0.15);
  border-radius: 999px;
  padding: 3px;
}

.lang-btn {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  padding: 6px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn.active {
  background: var(--primary);
  color: var(--cream);
}

/* ---------- cookie banner ---------- */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1500;
  max-width: 620px;
  margin: 0 auto;
  background: var(--primary);
  color: var(--cream);
  border-radius: 20px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(250, 247, 240, 0.85);
}

.cookie-learn-more {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.75;
  margin-right: auto;
  font-size: 12.5px;
}

.cookie-learn-more:hover {
  opacity: 1;
}

.cookie-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, opacity 0.2s;
}

.cookie-btn-ghost {
  background: rgba(250, 247, 240, 0.1);
  color: var(--cream);
}

.cookie-btn-ghost:hover {
  background: rgba(250, 247, 240, 0.18);
}

.cookie-btn-primary {
  background: var(--cream);
  color: var(--primary);
}

.cookie-btn-primary:hover {
  transform: translateY(-2px);
}

/* ---------- legal pages ---------- */

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
}

.legal-nav .nav-brand img {
  width: 30px;
  height: 30px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.legal-back:hover {
  color: var(--primary);
}

.legal-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px 120px;
}

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

.legal-hero .eyebrow {
  margin-bottom: 14px;
}

.legal-hero h1 {
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.legal-hero p {
  color: var(--ink-soft);
  font-size: 15.5px;
}

.legal-jump {
  display: flex;
  gap: 16px;
  margin-bottom: 44px;
  font-size: 13.5px;
  font-weight: 600;
}

.legal-jump a {
  color: var(--primary-light);
  border-bottom: 1px solid rgba(36, 51, 42, 0.25);
  padding-bottom: 2px;
}

.legal-jump a:hover {
  color: var(--primary);
}

.legal-lang-block {
  margin-bottom: 64px;
}

.legal-lang-block > h2:first-child {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-lighter);
  margin-bottom: 32px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.legal-article h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal-article h2:first-of-type {
  margin-top: 0;
}

.legal-article h3 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-article p,
.legal-article li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.legal-article p {
  margin-bottom: 14px;
}

.legal-article ul,
.legal-article ol {
  margin: 0 0 14px 20px;
}

.legal-article li {
  margin-bottom: 6px;
}

.legal-article a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-article strong {
  color: var(--ink);
}

.legal-fill {
  background: rgba(232, 176, 75, 0.18);
  padding: 1px 6px;
  border-radius: 4px;
  font-style: italic;
}

.legal-divider {
  border: none;
  border-top: 1px solid rgba(36, 51, 42, 0.1);
  margin: 56px 0;
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .not-grid, .steps { grid-template-columns: 1fr; }
  .privacy-inner { grid-template-columns: 1fr; }
  .nav-links { gap: 22px; font-size: 13px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .photo-hero { padding: 0 32px; }
  .photo-hero-widget { right: 50px; }
  .widget-callout { display: none; }
}

@media (max-width: 600px) {
  section { padding: 90px 0; }
  .photo-hero { padding: 0 22px; }
  #photoHero1 .photo-hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .photo-hero-widget {
    position: static;
    align-self: center;
    top: auto;
    right: auto;
    transform: none;
    margin-top: 28px;
  }
  .photo-hero-content.align-right {
    text-align: left;
    margin-left: 0;
  }
  .photo-hero-content.align-right .photo-hero-sub {
    margin-left: 0;
  }
  .not-section, .statuses { border-radius: 28px; margin: 0 16px; }
  .section-inner { padding: 0 22px; }
  .cta-form { flex-direction: column; }
  .glance-counter { gap: 24px; padding: 36px 24px; }
  .counter-num { font-size: 36px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { align-items: center; }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
    gap: 12px;
    border-radius: 18px;
  }
  .cookie-banner p { font-size: 12.5px; line-height: 1.5; }
  .cookie-actions { gap: 8px; }
  .cookie-learn-more { width: 100%; margin-right: 0; order: 3; text-align: center; }
  .cookie-btn { flex: 1; padding: 13px 12px; font-size: 12.5px; }

  .lang-btn { padding: 10px 15px; }

  .legal-nav { padding: 20px 22px; }
  .legal-main { padding: 24px 22px 100px; }
}
