/* ============================================
   Timerdoro — Shared Stylesheet
   Used across all pages.
   ============================================ */

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

:root {
  --tomato:        #ee5c52;
  --tomato-light:  #f48d85;
  --tomato-glow:   rgba(238, 92, 82, 0.25);
  --tomato-soft:   rgba(238, 92, 82, 0.10);

  --bg:            #0a0606;
  --bg-elev:       #161010;
  --card:          rgba(255,255,255,0.04);
  --card-hover:    rgba(255,255,255,0.07);
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.16);

  --text:          rgba(255,255,255,0.95);
  --text-2:        rgba(255,255,255,0.62);
  --text-3:        rgba(255,255,255,0.38);

  --green:         #4ade80;
  --gold-1:        #ffd84d;
  --gold-2:        #ffa733;

  --max:           1100px;
  --max-text:      720px;
  --max-narrow:    900px;

  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded",
               "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(238,92,82,0.08), transparent 70%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ── Navigation ────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10,6,6,0.7);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--tomato);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 16px var(--tomato-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.18s;
}

.nav-link:hover { color: var(--text); background: var(--card); }
.nav-link.active { color: var(--tomato); }

.nav-cta {
  background: var(--tomato);
  color: white !important;
  padding: 9px 16px;
  border-radius: 100px;
  font-weight: 600;
  margin-left: 4px;
  box-shadow: 0 4px 16px var(--tomato-glow);
}

.nav-cta:hover { transform: translateY(-1px); background: var(--tomato) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  padding: 6px;
  cursor: pointer;
}

/* ── Layout helpers ────────────────────────── */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
}

.section-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 80px 24px;
}

.section-text {
  max-width: var(--max-text);
  margin: 0 auto;
  padding: 80px 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--tomato);
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1, h2, h3, h4 { letter-spacing: -0.4px; }

.section-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 48px;
  max-width: 600px;
}

.section-privacy-policy {
  background: rgba(200,155,100,0.075);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 16px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.text-center .section-subtitle-secondary {
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  margin-bottom: clamp(40px, 6vw, 56px);
}

.section-intro .section-title {
  margin-bottom: 14px;
}

.section-intro .section-subtitle {
  margin-bottom: 12px;
}

.section-subtitle-secondary {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-3);
  max-width: 560px;
  margin: 0 auto;
}

.section-footnote {
  color: var(--text-3);
  font-size: 13px;
  margin-top: 32px;
  line-height: 1.5;
}

.section-cta .section-intro {
  margin-bottom: 28px;
}

.section-cta .section-intro .section-subtitle {
  margin-bottom: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ───────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--tomato);
  color: white !important;
  box-shadow: 0 6px 24px var(--tomato-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--tomato-glow);
}

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover { background: var(--card-hover); border-color: var(--border-strong); }

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Hero ──────────────────────────────────── */

.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--tomato-soft);
  border: 1px solid rgba(238,92,82,0.25);
  color: var(--tomato);
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tomato);
  box-shadow: 0 0 8px var(--tomato);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: 68px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero-accent {
  background: linear-gradient(135deg, var(--tomato), var(--tomato-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

.hero-stats-intro {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  margin: 32px 0 14px;
}

.hero-screenshot-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 560px;
  margin: 20px auto 0;
  padding: 0 16px;
  text-align: center;
}

.hero-screenshot-caption-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
}

.hero-screenshot-caption-sub {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
}

/* Hero + product screenshots (assets/images/*.png) */

.hero-screenshot {
  margin: 60px auto 0;
  max-width: min(1120px, 100%);
  position: relative;
}

/* ── Product showcase (hero + gallery) ─────── */

.showcase-device {
  margin: 0;
}

.showcase-device--hero {
  max-width: min(1120px, 96vw);
  margin: 0 auto;
}

.showcase-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: none;
}

.showcase-frame--phone {
  border-radius: 42px;
}

.showcase-frame--tall {
  border-radius: 40px;
}

.showcase-frame--watch {
  max-width: min(300px, 92vw);
  margin: 0 auto;
  border-radius: 48px;
}

.showcase-frame--desktop {
  border-radius: var(--radius-lg);
}

.showcase-frame--tablet {
  border-radius: var(--radius-lg);
}

.showcase-frame--modal {
  box-shadow: none;
}

.showcase-frame--hero-wide {
  border-radius: var(--radius-lg);
}

.showcase-frame--landscape {
  border-radius: var(--radius-lg);
}

.showcase-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(18px, 2.8vw, 36px);
  row-gap: clamp(22px, 4vw, 52px);
  align-items: start;
  justify-items: stretch;
  width: 100%;
  max-width: var(--max);
  margin: 16px auto 0;
}

.showcase-cell {
  margin: 0;
}

/* Row 1: primary phone — centered, sized to match asset ratio */
.showcase-cell--iphone-lead {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: min(402px, 90vw);
}

/* Row 2: compact watch (right-aligned toward settings) + tall settings */
.showcase-cell--watch {
  grid-column: 1 / span 4;
  justify-self: end;
  align-self: start;
  width: 100%;
  max-width: min(300px, 44vw);
  padding-top: clamp(0px, 3vw, 28px);
}

.showcase-cell--watch .showcase-frame--watch {
  max-width: min(252px, 100%);
  margin: 0 0 0 auto;
}

.showcase-cell--settings {
  grid-column: 5 / span 8;
  width: 100%;
  max-width: min(520px, 100%);
  justify-self: start;
}

/* Row 3: two portrait tablets — matched pair */
.showcase-cell--ipad-blue,
.showcase-cell--stats {
  grid-column: span 6;
}

/* Row 4: wide landscape strip */
.showcase-cell--landscape {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: min(1180px, 100%);
}

/* Row 5: alternate theme phone — narrow band, centered */
.showcase-cell--iphone-theme {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: min(400px, 90vw);
  margin-top: clamp(4px, 1.2vw, 16px);
}

.showcase-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 0 8px;
  text-align: center;
}

.showcase-caption-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.15px;
}

.showcase-caption-sub {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-3);
  max-width: 38rem;
}

@media (max-width: 900px) {
  .showcase-cell--watch {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 280px;
    padding-top: 0;
    padding-right: 0;
  }

  .showcase-cell--watch .showcase-frame--watch {
    margin: 0 auto;
  }

  .showcase-cell--settings {
    grid-column: 1 / -1;
    max-width: min(460px, 94vw);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .showcase-gallery {
    row-gap: 20px;
    column-gap: 16px;
  }

  .showcase-cell--ipad-blue,
  .showcase-cell--stats {
    grid-column: 1 / -1;
  }

  .showcase-cell--landscape {
    max-width: 100%;
  }
}

/* ── Showcase: row layout (landing only; modifier on .showcase-gallery) ─ */

.showcase-gallery.showcase-gallery--platform-rows {
  display: block;
  width: 100%;
  max-width: var(--max);
  margin: 16px auto 0;
}

.showcase-gallery.showcase-gallery--platform-rows .showcase-row figure {
  margin: 0;
}

.showcase-gallery.showcase-gallery--platform-rows .showcase-section {
  margin-top: clamp(36px, 6vw, 64px);
}

.showcase-gallery.showcase-gallery--platform-rows .showcase-section:first-child {
  margin-top: 0;
}

.showcase-frame--pad {
  border-radius: var(--radius-lg);
}

.showcase-frame--pad-wide {
  border-radius: var(--radius-lg);
}

.showcase-gallery.showcase-gallery--platform-rows .showcase-row {
  display: grid;
  gap: clamp(18px, 2.8vw, 32px);
  align-items: start;
  margin-top: 20px;
}

.showcase-gallery.showcase-gallery--platform-rows .showcase-section:first-child .showcase-row {
  margin-top: 0;
}

.showcase-gallery.showcase-gallery--platform-rows .showcase-row--phones {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-gallery.showcase-gallery--platform-rows .showcase-row--pads {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-gallery.showcase-gallery--platform-rows .showcase-row--single {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-gallery.showcase-gallery--platform-rows .showcase-row--watch {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 760px) {
  .showcase-gallery.showcase-gallery--platform-rows .showcase-row--phones {
    grid-template-columns: 1fr 1fr;
    max-width: 560px;
  }

  .showcase-gallery.showcase-gallery--platform-rows .showcase-row--phones > :nth-child(3) {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
  }

  .showcase-gallery.showcase-gallery--platform-rows .showcase-row--pads {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

.showcase-gallery.showcase-gallery--platform-rows .platform-divider {
  width: 100%;
  max-width: 80px;
  margin: clamp(40px, 6vw, 64px) auto;
  height: 1px;
  border: none;
  background: var(--border-strong);
}

.screenshot-placeholder {
  background:
    linear-gradient(135deg,
      rgba(238,92,82,0.08),
      rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.screenshot-placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--tomato-glow), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.6;
}

.placeholder-icon {
  width: 80px;
  height: 80px;
  background: var(--tomato);
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 16px 48px var(--tomato-glow);
}

.placeholder-text {
  position: relative;
  font-size: 14px;
  color: var(--text-3);
  font-family: monospace;
}

.placeholder-label {
  position: relative;
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

/* ── Stats Strip ───────────────────────────── */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 60px;
}

.stat {
  background: var(--bg);
  padding: 28px 20px;
  text-align: center;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--tomato);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Feature Grid ──────────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s;
}

.feature-card:hover {
  background: var(--card-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.icon-tomato { background: var(--tomato-soft); color: var(--tomato); }
.icon-purple { background: rgba(168,99,218,0.15); color: #c894e8; }
.icon-green  { background: rgba(74,222,128,0.13); color: var(--green); }
.icon-gold   { background: rgba(255,199,79,0.15); color: var(--gold-1); }
.icon-blue   { background: rgba(80,161,232,0.15); color: #6cb4ee; }
.icon-cyan   { background: rgba(96,215,226,0.13); color: #66d9e8; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-card p.feature-card-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 10px;
  line-height: 1.35;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ── Pricing ───────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}

.price-card.pro {
  border-color: rgba(255,199,79,0.30);
  background: linear-gradient(135deg, rgba(255,199,79,0.05), rgba(255,153,51,0.02));
}

.price-card .badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #1a0f0f;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
  letter-spacing: 0.8px;
}

.price-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

.price-subtitle {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-2);
  margin: 0 0 14px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price-currency, .price-value {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
}

.price-period {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  margin-bottom: 24px;
}

.price-features li {
  font-size: 14px;
  color: var(--text-2);
  padding: 7px 0 7px 26px;
  position: relative;
}

.price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 16px; height: 16px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='black' d='M13.5 4.5L6 12l-3.5-3.5 1.4-1.4L6 9.2l6.1-6.1z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='black' d='M13.5 4.5L6 12l-3.5-3.5 1.4-1.4L6 9.2l6.1-6.1z'/></svg>") no-repeat center / contain;
}

/* ── Page Header (for sub-pages) ───────────── */

.page-header {
  text-align: center;
  padding: 80px 24px 30px;
  max-width: var(--max-text);
  margin: 0 auto;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.page-header .subtitle {
  font-size: 18px;
  color: var(--text-2);
}

/* ── Article style content ────────────────── */

.page-content {
  max-width: var(--max-text);
  margin: 0 auto;
  padding: 0 24px 60px;
}

.page-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 44px;
  margin-bottom: 12px;
}

.page-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
}

.page-content p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 14px;
}

.page-content p strong {
  color: var(--text);
  font-weight: 600;
}

.page-content a {
  color: var(--tomato);
  text-decoration: none;
  border-bottom: 1px dotted rgba(238,92,82,0.4);
  transition: border 0.15s;
}

.page-content a:hover { border-bottom: 1px solid var(--tomato); }

.page-content ul {
  margin: 14px 0;
  padding-left: 0;
  list-style: none;
}

.page-content ul li {
  font-size: 16px;
  color: var(--text-2);
  padding: 4px 0 4px 22px;
  position: relative;
  line-height: 1.7;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 13px;
  width: 6px; height: 6px;
  background: var(--tomato);
  border-radius: 50%;
  opacity: 0.7;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}

.info-card h3 { margin-top: 0; }
.info-card p:last-child { margin-bottom: 0; }

.tldr-card {
  background: linear-gradient(135deg, rgba(238,92,82,0.10), rgba(238,92,82,0.04));
  border: 1px solid rgba(238,92,82,0.20);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tldr-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(238,92,82,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.tldr-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--tomato);
  margin-bottom: 4px;
}

.tldr-text { font-size: 15px; color: var(--text); margin: 0 !important; }

/* ── About Page ────────────────────────────── */

.profile-card {
  display: flex;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 30px 0;
  align-items: center;
}

.profile-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tomato), var(--tomato-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 34px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.profile-info h3 { margin: 0 0 4px; font-size: 20px; }
.profile-info p { margin: 0 !important; color: var(--text-2); font-size: 15px; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.value-card {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.value-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 !important;
}

/* ── Contact Page ──────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
  color: inherit;
  border-bottom: 1px solid var(--border) !important;
}

.contact-card:hover {
  background: var(--card-hover);
  border-color: var(--border-strong) !important;
  transform: translateY(-2px);
}

.contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--tomato-soft);
  color: var(--tomato);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--text);
}

.contact-card .contact-detail {
  font-size: 14px;
  color: var(--text-2);
  margin: 0 !important;
}

/* ── FAQ Page ──────────────────────────────── */

.faq-link-card {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 16px;
  margin-bottom: 16px;
  padding: 18px 20px;

  border: 1px solid var(--border);
  border-radius: var(--radius);

  background: var(--tomato);
  color: white !important;

  text-decoration: none;
  font-weight: 600;

  transition:
          transform 0.2s ease,
          border-color 0.2s ease,
          background 0.2s ease,
          box-shadow 0.2s ease;
}

.faq-link-card:hover {
  border-color: var(--border-strong);
  /*background: var(--card);*/

  /*transform: translateY(-2px);*/
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faq-link-card .arrow {
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.faq-link-card:hover .arrow {
  transform: translateX(4px);
}

.faq-list {
  margin-top: 30px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border 0.2s;
  padding: 0 12px;
}

.faq-item[open] {
  border-color: var(--border-strong);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  user-select: none;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--tomato);
  transition: transform 0.2s;
  margin-left: 12px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 18px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
}

.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ── Press Kit ─────────────────────────────── */

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.press-asset {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.press-asset-preview {
  background: linear-gradient(135deg, rgba(238,92,82,0.10), rgba(255,255,255,0.02));
  border-radius: var(--radius-sm);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--tomato);
}

.press-asset h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.press-asset p {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 12px !important;
}

.press-asset .download-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--tomato);
  text-decoration: none;
  border: 0 !important;
}

.press-asset .download-link:hover {
  text-decoration: underline;
}

.boilerplate {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 20px 0;
  font-family: monospace;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  white-space: pre-wrap;
}

/* ── Footer ────────────────────────────────── */

footer {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 50px 24px 30px;
  background: var(--bg-elev);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand { max-width: 300px; }

.footer-brand p {
  font-size: 14px;
  color: var(--text-2);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }

.footer-col a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--tomato); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-3);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: var(--text-3);
  text-decoration: none;
}

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

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

/* ── Cookie Banner ─────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 16px 20px;
  max-width: 460px;
  width: calc(100% - 40px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  display: none;
}

.cookie-banner.show { display: block; animation: slideUp 0.4s ease-out; }

@keyframes slideUp {
  from { transform: translate(-50%, 20px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}

.cookie-banner p {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 12px;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--tomato);
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}

.cookie-accept {
  background: var(--tomato);
  color: white;
}

.cookie-accept:hover { transform: translateY(-1px); }

/* ── Responsive ────────────────────────────── */

@media (max-width: 768px) {
  .hero { padding: 60px 20px 40px; }
  .hero-title { font-size: 42px; }
  .hero-subtitle { font-size: 17px; }
  .section-title, .page-header h1 { font-size: 32px; }
  .section, .section-narrow, .section-text { padding: 60px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .profile-card { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,6,6,0.95);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open .nav-link, .nav-links.open .nav-cta {
    width: 100%; text-align: center;
  }
  .screenshot-placeholder { padding: 50px 20px; }
  .showcase-device--hero { max-width: min(100%, 96vw); }
  .showcase-gallery { gap: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .price-value, .price-currency { font-size: 36px; }
  .nav-inner { padding: 12px 16px; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
  z-index: 9999;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════════════════
   SUBPAGE STYLES (article, brand, contact, legal, etc.)
   Added back from original stylesheet to fix all subpages.
   ════════════════════════════════════════════════════════════ */

/* ── Page Header (for sub-pages) ───────────── */

.page-header {
  text-align: center;
  padding: 80px 24px 30px;
  max-width: var(--max-text);
  margin: 0 auto;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.page-header .subtitle {
  font-size: 18px;
  color: var(--text-2);
}

/* ── Article style content ────────────────── */

.page-content {
  max-width: var(--max-text);
  margin: 0 auto;
  padding: 0 24px 60px;
}

.page-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 44px;
  margin-bottom: 12px;
}

.page-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
}

.page-content p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 14px;
}

.page-content p strong {
  color: var(--text);
  font-weight: 600;
}

.page-content a {
  color: var(--tomato);
  text-decoration: none;
  border-bottom: 1px dotted rgba(238,92,82,0.4);
  transition: border 0.15s;
}

.page-content a:hover { border-bottom: 1px solid var(--tomato); }

.page-content ul {
  margin: 14px 0;
  padding-left: 0;
  list-style: none;
}

.page-content ul li {
  font-size: 16px;
  color: var(--text-2);
  padding: 4px 0 4px 22px;
  position: relative;
  line-height: 1.7;
}

.page-content ul li::before {
  content: '';
  position: absolute;
  left: 4px; top: 13px;
  width: 6px; height: 6px;
  background: var(--tomato);
  border-radius: 50%;
  opacity: 0.7;
}

/* ── Article layout (subpages use <article class="article">) ─ */

.article {
  max-width: var(--max-text);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.article-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 48px);
  padding-top: 8px;
}

.article-header .eyebrow {
  margin-bottom: 12px;
}

.article-header h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 14px;
}

.article-subtitle {
  font-size: 18px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
}

.article-meta {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 14px;
}

.article h2 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 44px;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.article h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
}

.article p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 14px;
}

.article p strong {
  color: var(--text);
  font-weight: 600;
}

.article a {
  color: var(--tomato);
  text-decoration: none;
  border-bottom: 1px dotted rgba(238,92,82,0.4);
  transition: border 0.15s;
}

.article a:hover {
  border-bottom: 1px solid var(--tomato);
}

.article a.btn,
.article a.btn:hover {
  border-bottom: none;
}

.article ul {
  margin: 14px 0;
  padding-left: 0;
  list-style: none;
}

.article ul li {
  font-size: 16px;
  color: var(--text-2);
  padding: 4px 0 4px 22px;
  position: relative;
  line-height: 1.7;
}

.article ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 13px;
  width: 6px;
  height: 6px;
  background: var(--tomato);
  border-radius: 50%;
  opacity: 0.7;
}

aside.tldr {
  margin-top: 36px;
  padding: 20px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--tomato);
}

aside.tldr strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 8px;
}

aside.tldr p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

aside.tldr p + p {
  margin-top: 10px;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
}

.info-card h3 { margin-top: 0; }
.info-card p:last-child { margin-bottom: 0; }

.tldr-card {
  background: linear-gradient(135deg, rgba(238,92,82,0.10), rgba(238,92,82,0.04));
  border: 1px solid rgba(238,92,82,0.20);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tldr-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(238,92,82,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.tldr-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--tomato);
  margin-bottom: 4px;
}

.tldr-text { font-size: 15px; color: var(--text); margin: 0 !important; }

/* ── About Page ────────────────────────────── */

.profile-card {
  display: flex;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 30px 0;
  align-items: center;
}

.profile-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tomato), var(--tomato-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 34px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.profile-info h3 { margin: 0 0 4px; font-size: 20px; }
.profile-info p { margin: 0 !important; color: var(--text-2); font-size: 15px; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.value-card {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.value-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 !important;
}

/* ── Contact Page ──────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
  color: inherit;
  border-bottom: 1px solid var(--border) !important;
}

.contact-card:hover {
  background: var(--card-hover);
  border-color: var(--border-strong) !important;
  transform: translateY(-2px);
}

.contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--tomato-soft);
  color: var(--tomato);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--text);
}

.contact-card .contact-detail {
  font-size: 14px;
  color: var(--text-2);
  margin: 0 !important;
}

/* ── FAQ Page ──────────────────────────────── */

.faq-list {
  margin-top: 30px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border 0.2s;
}

.faq-item[open] {
  border-color: var(--border-strong);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  user-select: none;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--tomato);
  transition: transform 0.2s;
  margin-left: 12px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 18px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
}

.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ── Press Kit ─────────────────────────────── */

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.press-asset {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.press-asset-preview {
  background: linear-gradient(135deg, rgba(238,92,82,0.10), rgba(255,255,255,0.02));
  border-radius: var(--radius-sm);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--tomato);
}

.press-asset h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.press-asset p {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 12px !important;
}

.press-asset .download-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--tomato);
  text-decoration: none;
  border: 0 !important;
}

.press-asset .download-link:hover {
  text-decoration: underline;
}

.boilerplate {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 20px 0;
  font-family: monospace;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  white-space: pre-wrap;
}

/* ── Skip Link (a11y) ─────────────────────── */

.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 1000;
  background: var(--tomato);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 8px;
  outline: 3px solid white;
  outline-offset: 2px;
}

/* Strong, consistent focus indicators for all interactive elements */
:focus-visible {
  outline: 2px solid var(--tomato);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.nav-cta:focus-visible,
.nav-lang:focus-visible {
  outline: 2px solid var(--tomato);
  outline-offset: 3px;
}

/* Visually hidden for screen readers only */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── Language Toggle Button (in nav) ───────── */

.nav-lang {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.18s;
  margin-left: 4px;
  font-family: inherit;
  min-width: 38px;
}

.nav-lang:hover {
  background: var(--card-hover);
  border-color: var(--tomato);
  color: var(--tomato);
}

/* Footer column headings styled like the old <h4> */
.footer-col-h {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Footer "Manage cookies" trigger looks like a link */
.footer-cookie-trigger {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--text-3);
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
}

.footer-cookie-trigger:hover { color: var(--tomato); }

/* ── Cookie Banner (with categories) ───────── */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 20px);
  z-index: 999;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 22px 24px 18px;
  max-width: 520px;
  width: calc(100% - 40px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease-out;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.cookie-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 12px;
}

.cookie-banner h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin: 0;
  color: var(--text);
}

.cookie-close {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 24px;
  line-height: 1;
  padding: 0 4px;
  cursor: pointer;
  border-radius: 4px;
}

.cookie-close:hover { color: var(--text); }

.cookie-banner p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0 0 14px;
}

.cookie-categories {
  border: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-cat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}

.cookie-cat:hover { background: var(--card-hover); }

.cookie-cat input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--tomato);
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-cat input[type="checkbox"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.cookie-cat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-cat-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}

.cookie-cat-desc {
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.cookie-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  flex: 1 1 auto;
  min-width: 110px;
  font-family: inherit;
}

.cookie-reject {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border-strong);
}

.cookie-reject:hover {
  color: var(--text);
  border-color: var(--text-2);
}

.cookie-save {
  background: var(--card);
  color: var(--text);
  border-color: var(--border-strong);
}

.cookie-save:hover { background: var(--card-hover); }

.cookie-accept {
  background: var(--tomato);
  color: white;
  border-color: var(--tomato);
}

.cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--tomato-glow);
}

.cookie-link-row {
  margin: 0 !important;
  font-size: 12.5px;
  text-align: right;
}

.cookie-link {
  color: var(--tomato);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
}

.cookie-link:hover { text-decoration: none; }

/* ── Contact Form ──────────────────────────── */

.contact-form {
  margin-top: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-form-intro {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 20px;
  line-height: 1.55;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 11px 13px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  transition: border 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--tomato);
  box-shadow: 0 0 0 3px var(--tomato-soft);
}

.form-field textarea { resize: vertical; min-height: 130px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 6px 0 18px;
}

.form-consent input { margin-top: 3px; accent-color: var(--tomato); flex-shrink: 0; }
.form-consent a { color: var(--tomato); }

.form-submit {
  background: var(--tomato);
  color: white;
  border: none;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 16px var(--tomato-glow);
  transition: all 0.2s;
}

.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 22px var(--tomato-glow); }

.form-success {
  display: none;
  padding: 22px;
  background: rgba(74,222,128,0.10);
  border: 1px solid rgba(74,222,128,0.30);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── Brand cards (about page) ─────────────── */

.brand-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin: 18px 0;
}

.brand-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
  color: var(--text);
}

.brand-card p { color: var(--text-2); line-height: 1.65; margin-bottom: 12px; }

.brand-card .brand-meta {
  font-size: 13px;
  color: var(--text-3);
  font-style: italic;
  margin-top: 14px;
  margin-bottom: 0;
}

.brand-figure {
  margin: 16px 0;
  display: flex;
  justify-content: flex-start;
}

.brand-swatch {
  width: 100%;
  max-width: 280px;
  height: 86px;
  border-radius: 12px;
  margin: 16px 0;
  box-shadow: 0 8px 22px rgba(238, 92, 82, 0.25);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Article profile block (about page) */
.article-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 24px 0 36px;
}

.article-profile strong { display: block; font-size: 16px; margin-bottom: 4px; }
.article-profile p { margin: 0 !important; font-size: 13.5px; color: var(--text-3); }

/* Cookie & legal tables */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}
.legal-table th, .legal-table td {
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  color: var(--text-2);
}
.legal-table th {
  background: var(--card);
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
}
.legal-table code {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  color: var(--text);
}

/* Media note (credits page) */
.media-demo {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin: 16px 0;
}
.media-demo audio { width: 100%; margin-top: 12px; }
.media-demo .anim-frame {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.media-demo .anim-frame svg { width: 180px; height: 180px; }
.media-demo .lic {
  font-size: 13px;
  color: var(--text-3);
  font-style: italic;
  margin-top: 12px;
}

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE — Company facts grid (Aufgabe 0)
   ════════════════════════════════════════════════════════════ */

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 24px 0 36px;
}

.fact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--tomato);
}

.fact-value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE — Brand card numbering & Nice class pills
   ════════════════════════════════════════════════════════════ */

.brand-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.brand-card-head h3 {
  margin: 0 !important;
}

.brand-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tomato);
  color: white;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.brand-classes {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.brand-classes-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-3);
}

.brand-class-pill {
  display: inline-block;
  background: var(--tomato-soft, rgba(238, 92, 82, 0.12));
  color: var(--tomato);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid rgba(238, 92, 82, 0.25);
}

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE — Trademark research cards
   ════════════════════════════════════════════════════════════ */

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.research-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  position: relative;
}

.research-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 8px 0 8px;
  color: var(--text);
}

.research-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

.research-card code {
  background: var(--bg-elev, rgba(255,255,255,0.06));
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12.5px;
  font-family: ui-monospace, 'SF Mono', monospace;
}

.research-status {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
}

.research-card--ok .research-status {
  background: rgba(52, 199, 89, 0.15);
  color: #34c759;
  border: 1px solid rgba(52, 199, 89, 0.35);
}

.research-card--warn .research-status {
  background: rgba(255, 159, 10, 0.15);
  color: #ff9f0a;
  border: 1px solid rgba(255, 159, 10, 0.35);
}

.research-card--ok {
  border-left: 3px solid #34c759;
}

.research-card--warn {
  border-left: 3px solid #ff9f0a;
}

.research-note {
  font-size: 13px;
  font-style: italic;
  color: var(--text-3);
  margin-top: 8px !important;
  margin-bottom: 32px !important;
  padding: 10px 14px;
  background: var(--bg-elev, rgba(255,255,255,0.03));
  border-left: 2px solid var(--border-strong);
  border-radius: 4px;
}

@media (max-width: 600px) {
  .facts-grid, .research-grid {
    grid-template-columns: 1fr;
  }
}

/* Language-aware visibility (no JS dependency) */
html[lang="en"] .lang-de { display: none; }
html[lang="de"] .lang-en { display: none; }