*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
img, video, iframe { max-width: 100%; height: auto; }

:root {
  --font-system: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  /* Design system (light / warm parchment) */
  --body-bg: #faf8f4;
  --bg: #faf8f4;
  --card: #ffffff;
  --surface: #f5f2ec;
  --accent: #c47832;
  --accent-dark: #a05a20;
  --accent-light: rgba(196, 120, 50, 0.1);
  /* Compatibility aliases (used in inline styles / older CSS) */
  --primary: var(--accent);
  --primary-strong: var(--accent-dark);
  --primary-ink: #ffffff;
  --border-strong: rgba(196, 120, 50, 0.25);
  --text: #1a1208;
  --text-2: #5a4a32;
  --text-3: #9a8a72;
  --border: rgba(196, 120, 50, 0.15);

  --radius-card: 16px;
  --radius-shot: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 10px 26px rgba(26, 18, 8, 0.06);
  --shadow-md: 0 18px 46px rgba(26, 18, 8, 0.09);
  --shadow-xl: 0 28px 80px rgba(26, 18, 8, 0.14);

  --shell: min(1100px, calc(100vw - 32px));
  --ring: 0 0 0 4px rgba(196, 120, 50, 0.16);

  --status-success: #2f7a47;
  --status-error: #b4543a;
}

/* Dark theme support (requested selector) */
[data-theme="dark"] {
  --body-bg: #000000;
  --bg: #000000;
  --card: #0F0F0F;
  --surface: #0A0A0A;
  --text: #e8e0d4;
  --text-2: rgba(232, 224, 212, 0.78);
  --text-3: rgba(232, 224, 212, 0.55);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 22px 60px rgba(0, 0, 0, 0.42);
  --shadow-xl: 0 36px 100px rgba(0, 0, 0, 0.55);
  --ring: 0 0 0 4px rgba(196, 120, 50, 0.22);

  --status-success: #9ece8b;
  --status-error: #ef8d73;
}

/* Backward-compatible explicit light mode */
[data-theme="light"] {
  --body-bg: #faf8f4;
  --bg: #faf8f4;
  --card: #ffffff;
  --surface: #f5f2ec;
  --text: #1a1208;
  --text-2: #5a4a32;
  --text-3: #9a8a72;
  --border: rgba(196, 120, 50, 0.15);
}

/* ─── Warm Cream Theme ──────────────────────────────────────────────── */
[data-theme="cream"] {
  --body-bg: #FDF8F2;
  --bg: #FDF8F2;
  --card: #FDF8F2;
  --surface: #FCF5EC;
  --text: #2C1A0E;
  --text-2: #6B3F1F;
  --text-3: #A0724A;
  --border: rgba(180, 110, 50, 0.18);
  --border-strong: rgba(180, 110, 50, 0.35);
  --accent: #E8680A;
  --accent-dark: #C4520A;
  --accent-light: #F5A05A;
  --primary: #E8680A;
  --primary-strong: #C4520A;

  --shadow-sm: 0 10px 26px rgba(44, 26, 14, 0.08);
  --shadow-md: 0 18px 46px rgba(44, 26, 14, 0.12);
  --shadow-xl: 0 28px 80px rgba(44, 26, 14, 0.16);
  --ring: 0 0 0 4px rgba(232, 104, 10, 0.18);

  --status-success: #2f7a47;
  --status-error: #b4543a;
}

/* Cream glass overrides — body gradient gives glass something to blur */
[data-theme="cream"] body {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(255, 160, 80, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 10%, rgba(240, 120, 40, 0.25) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 80%, rgba(200, 130, 60, 0.20) 0%, transparent 50%),
    #FDF8F2;
  min-height: 100vh;
}

/* Cream glass overrides — site header */
[data-theme="cream"] .site-header {
  background: rgba(253, 248, 242, 0.72) !important;
}

/* Cream glass overrides — cards & panels */
[data-theme="cream"] .feature-card,
[data-theme="cream"] .step,
[data-theme="cream"] .pricing-card,
[data-theme="cream"] .about-card,
[data-theme="cream"] .hero-shot-card,
[data-theme="cream"] .cookie-banner,
[data-theme="cream"] .contact-card {
  background: rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 8px 40px rgba(180, 100, 30, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.70);
}

/* ─── Stone Theme ───────────────────────────────────────────────────── */
[data-theme="stone"] {
  --body-bg: transparent;
  --bg: transparent;
  --card: rgba(26, 20, 18, 0.85);
  --surface: rgba(36, 30, 28, 0.85);
  --text: #F5F5F7;
  --text-primary: #F5F5F7;
  --text-2: rgba(255, 255, 255, 0.7);
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-3: rgba(255, 255, 255, 0.5);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --accent: #D97A46;
  --accent-dark: #B05520;
  --accent-light: rgba(217, 122, 70, 0.15);
  --primary: #D97A46;
  --primary-strong: #B05520;
  --shadow-sm: 0 10px 26px rgba(15, 5, 0, 0.50);
  --shadow-md: 0 18px 46px rgba(15, 5, 0, 0.60);
  --shadow-xl: 0 28px 80px rgba(15, 5, 0, 0.75);
  --ring: 0 0 0 4px rgba(217, 122, 70, 0.25);
  --status-success: #9ece8b;
  --status-error: #ea4335;
}

[data-theme="stone"] body {
  background:
    radial-gradient(circle at 90% 10%, rgba(92, 58, 33, 0.6) 0%, transparent 60%),
    radial-gradient(circle at 50% 90%, rgba(168, 120, 50, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 50%, rgba(45, 55, 65, 0.6) 0%, transparent 70%),
    #0a0807;
  min-height: 100vh;
}

[data-theme="stone"] .site-header {
  background: rgba(10, 8, 7, 0.85) !important;
  backdrop-filter: blur(12px);
}

[data-theme="stone"] .feature-card,
[data-theme="stone"] .step,
[data-theme="stone"] .pricing-card,
[data-theme="stone"] .about-card,
[data-theme="stone"] .hero-shot-card,
[data-theme="stone"] .cookie-banner,
[data-theme="stone"] .contact-card {
  background: rgba(26, 20, 18, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}


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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

[data-theme="dark"] html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-system);
  background: var(--body-bg);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 3px;
}

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

button,
input,
textarea {
  font: inherit;
}

:where(a, button, input, textarea):focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-color: rgba(196, 120, 50, 0.55);
}

.landing-page {
  min-height: 100vh;
}

.shell {
  max-width: var(--shell);
  width: 100%;
  margin: 0 auto;
}

/* ───────────────────────── Header / Navbar ───────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 244, 0.92);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .site-header {
  background: rgba(15, 15, 19, 0.84);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  max-width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--accent);
  box-shadow: 0 10px 28px rgba(196, 120, 50, 0.12);
}

[data-theme="dark"] .brand-mark {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 0.82rem;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 56ch;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--text-2);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  transition: color 0.18s ease;
}

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

#menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  place-items: center;
  font-size: 1.25rem;
  color: var(--text);
  cursor: pointer;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ───────────────────────── Buttons ───────────────────────── */
.theme-toggle,
.text-button,
.primary-button,
.secondary-button,
.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  font-weight: 700;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease,
    color 0.16s ease;
  will-change: transform;
}

.theme-toggle,
.text-button {
  color: var(--text-2);
}

.theme-toggle:hover,
.text-button:hover {
  transform: translateY(-1px);
  border-color: rgba(196, 120, 50, 0.32);
  color: var(--text);
}

.secondary-button,
.login-button {
  color: var(--accent-dark);
  border-color: rgba(196, 120, 50, 0.35);
}

[data-theme="dark"] .secondary-button,
[data-theme="dark"] .login-button {
  color: var(--accent);
  border-color: rgba(196, 120, 50, 0.45);
}

.secondary-button:hover,
.login-button:hover {
  transform: translateY(-1px);
  background: var(--accent-light);
  box-shadow: var(--shadow-sm);
}

.primary-button {
  color: #ffffff;
  border-color: rgba(196, 120, 50, 0.55);
  background: linear-gradient(180deg, #d58a45 0%, #c47832 52%, #b86a28 100%);
  box-shadow: 0 14px 30px rgba(196, 120, 50, 0.22);
}

.primary-button:hover {
  transform: translateY(-1px);
  border-color: rgba(196, 120, 50, 0.72);
  box-shadow: 0 18px 40px rgba(196, 120, 50, 0.28);
}

.primary-button:disabled,
.secondary-button:disabled,
.theme-toggle:disabled,
.text-button:disabled,
.login-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

/* ───────────────────────── Hero ───────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0 56px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(800px 540px at 18% 20%, rgba(196, 120, 50, 0.14), transparent 55%),
    radial-gradient(700px 480px at 88% 28%, rgba(196, 120, 50, 0.10), transparent 58%),
    radial-gradient(800px 600px at 56% 100%, rgba(196, 120, 50, 0.06), transparent 60%);
  pointer-events: none;
}

[data-theme="dark"] .hero-section::before {
  background:
    radial-gradient(900px 580px at 18% 18%, rgba(196, 120, 50, 0.18), transparent 55%),
    radial-gradient(800px 520px at 88% 28%, rgba(196, 120, 50, 0.14), transparent 58%),
    radial-gradient(900px 700px at 56% 102%, rgba(196, 120, 50, 0.08), transparent 62%);
}

.hero-grid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-copy {
  flex: 0 1 auto;
  min-width: 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent-light);
  border: 1px solid rgba(196, 120, 50, 0.28);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

[data-theme="dark"] .hero-pill {
  color: var(--accent);
  border-color: rgba(196, 120, 50, 0.36);
}

.hero-label {
  margin-top: 16px;
  color: var(--text-2);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--text);
}

.hero-description {
  margin: 0;
  max-width: 560px;
  color: var(--text-2);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-actions .primary-button,
.hero-actions .secondary-button {
  min-height: 46px;
  padding: 0 22px;
}

.hero-meta {
  margin-top: 14px;
  color: var(--text-3);
  font-size: 0.92rem;
}

.hero-credential {
  margin-top: 10px;
  color: var(--text-3);
  font-size: 0.86rem;
  font-style: italic;
  letter-spacing: 0.01em;
}

.hero-visual {
  flex: 0 0 min(580px, 45vw);
  max-width: 580px;
  width: 100%;
}

.hero-shot-card {
  padding: 12px;
  border-radius: var(--radius-shot);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .hero-shot-card {
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.55);
}

.shot-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 0 8px;
}

.shot-dots {
  display: flex;
  gap: 8px;
}

.shot-dots span {
  max-width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(154, 138, 114, 0.35);
}

[data-theme="dark"] .shot-dots span {
  background: rgba(232, 224, 212, 0.18);
}

.shot-dots span:nth-child(1) {
  background: rgba(232, 96, 88, 0.9);
}
.shot-dots span:nth-child(2) {
  background: rgba(246, 189, 69, 0.95);
}
.shot-dots span:nth-child(3) {
  background: rgba(86, 194, 117, 0.9);
}

.shot-caption {
  color: var(--text-3);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-shot {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(196, 120, 50, 0.18);
  background: var(--surface);
}

/* Swap screenshots by theme */
.dark-only {
  display: none;
}
.light-only {
  display: block;
}
[data-theme="dark"] .dark-only {
  display: block;
}
[data-theme="dark"] .light-only {
  display: none;
}

/* ───────────────────────── Sections ───────────────────────── */
.section-block {
  padding: 76px 0;
  background: var(--bg);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-kicker {
  color: var(--text-3);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
}

/* ───────────────────────── Features ───────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.guide-card,
.contact-panel,
.contact-form,
.pricing-card,
.creator-card,
.cookie-banner {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--card);
}

.feature-card {
  position: relative;
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.feature-card::before,
.guide-card::before,
.pricing-card::before,
.creator-card::before,
.hero-shot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.85;
  z-index: 5;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 120, 50, 0.35);
  box-shadow: var(--shadow-md);
}

.feature-card h3,
.guide-copy h3,
.contact-panel h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.feature-card p,
.guide-copy p,
.contact-panel p {
  margin: 0;
  color: var(--text-3);
  line-height: 1.75;
}

/* ───────────────────────── Guide ───────────────────────── */
.guide-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .guide-section {
  background: rgba(255, 255, 255, 0.02);
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

/* Shared top-border gradient applied above */

.guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 120, 50, 0.35);
  box-shadow: var(--shadow-md);
}

.guide-step {
  margin-bottom: 10px;
  color: var(--text-3);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-image-frame {
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(196, 120, 50, 0.18);
  background: var(--surface);
  margin-bottom: 18px;
}

[data-theme="dark"] .guide-image-frame {
  background: rgba(255, 255, 255, 0.03);
}

.guide-image-frame img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.stretch-button {
  width: 100%;
}

/* ───────────────────────── Contact ───────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

.contact-panel,
.contact-form {
  padding: 24px;
}

.contact-label {
  margin-bottom: 12px;
  color: var(--text-3);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.contact-detail span {
  display: block;
  color: var(--text-3);
  font-size: 0.86rem;
  margin-bottom: 6px;
}

.contact-detail strong,
.contact-detail a {
  color: var(--text);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-2);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(196, 120, 50, 0.25);
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

[data-theme="dark"] .form-field input,
[data-theme="dark"] .form-field textarea {
  background: rgba(255, 255, 255, 0.03);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-3);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(196, 120, 50, 0.6);
}

.full-width {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--text-3);
  font-size: 0.9rem;
}

.form-note[data-state="pending"] {
  color: var(--text-2);
}

.form-note[data-state="success"] {
  color: var(--status-success);
}

.form-note[data-state="error"] {
  color: var(--status-error);
}

/* ───────────────────────── Pricing ───────────────────────── */
.pricing-section {
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

#pricing-free {
  border-color: rgba(196, 120, 50, 0.22);
  background: linear-gradient(180deg, var(--card), rgba(196, 120, 50, 0.02));
}

.pricing-card--pro {
  border-color: rgba(196, 120, 50, 0.55);
  box-shadow: 0 0 0 1px rgba(196, 120, 50, 0.08), 0 24px 70px rgba(196, 120, 50, 0.12);
}

[data-theme="dark"] .pricing-card--pro {
  box-shadow: 0 0 0 1px rgba(196, 120, 50, 0.10), 0 28px 90px rgba(0, 0, 0, 0.5);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(196, 120, 50, 0.2);
}

.pricing-tier-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}

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

.pricing-amount {
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.pricing-period {
  font-size: 0.92rem;
  color: var(--text-3);
  font-weight: 700;
}

.pricing-yearly-note {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--text-2);
}

.pricing-save-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--accent-light);
  border: 1px solid rgba(196, 120, 50, 0.22);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-left: 6px;
}

[data-theme="dark"] .pricing-save-tag {
  color: var(--accent);
}

.pricing-tagline {
  margin: 0;
  color: var(--text-3);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.45;
}

.pricing-features li svg {
  flex-shrink: 0;
  display: inline;
  color: var(--accent);
}

/* ───────────────────────── Creator ───────────────────────── */
.creator-section {
  padding: 0 0 52px;
  background: var(--bg);
}

.creator-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.creator-icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.creator-label {
  color: var(--text-3);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.creator-name {
  margin: 0 0 10px;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text);
}

.creator-bio {
  margin: 0 0 16px;
  color: var(--text-3);
  font-size: 0.95rem;
  line-height: 1.75;
}

.creator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.creator-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent-light);
  border: 1px solid rgba(196, 120, 50, 0.22);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

[data-theme="dark"] .creator-tag {
  color: var(--accent);
}

/* ───────────────────────── Footer ───────────────────────── */
.site-footer {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 40px 0 48px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
}

.site-footer .footer-container {
  width: min(1100px, calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.site-footer .footer-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer .footer-brand {
  font-weight: 900;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
}

.site-footer .footer-brand .theme-drum {
  height: 32px;
  width: auto;
  margin-right: 10px;
}

.site-footer .footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer .footer-links a {
  transition: color 0.18s ease;
  color: var(--text-secondary);
}

.site-footer .footer-links a:hover {
  color: var(--text-primary);
}

.site-footer .footer-desc {
  margin: 0;
  max-width: 70ch;
  color: var(--text-muted);
}

.site-footer .footer-legal {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ───────────────────────── Cookie Banner ───────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(94%, 640px);
  background: rgba(255, 255, 255, 0.92);
  padding: 18px 20px;
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  transition: opacity 0.35s ease, transform 0.35s ease;
  animation: cookieSlideUp 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .cookie-banner {
  background: rgba(26, 26, 36, 0.92);
}

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

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.6;
}

.cookie-content p a {
  color: var(--accent);
  text-decoration: underline;
}

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

.btn-cookie-accept {
  border: 1px solid rgba(196, 120, 50, 0.55);
  background: linear-gradient(180deg, #d58a45 0%, #c47832 60%, #b86a28 100%);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.btn-cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(196, 120, 50, 0.22);
}

.btn-cookie-link {
  font-size: 0.88rem;
  color: var(--text-3);
  font-weight: 800;
  transition: color 0.18s ease;
}

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

/* ───────────────────────── User Pill ───────────────────────── */
.user-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.user-avatar {
  max-width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(196, 120, 50, 0.75);
  object-fit: cover;
}

.user-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
}

.logout-btn {
  min-height: 36px;
  padding: 0 14px;
}

/* ───────────────────────── Responsive ───────────────────────── */
@media (max-width: 1100px) {
  .hero-grid {
    flex-direction: column;
    align-items: stretch;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-visual {
    flex-basis: auto;
    max-width: none;
  }

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

  .contact-grid,
  .guide-list {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

/* =========================================================================
   MOBILE RESPONSIVENESS (NEW)
   ========================================================================= */

@media (max-width: 1024px) {
  .hero-grid {
    flex-direction: column;
    align-items: stretch;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-visual {
    flex-basis: auto;
    max-width: none;
  }

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

@media (max-width: 640px) {
  .shell {
    width: min(calc(100vw - 24px), 1100px);
  }

  .nav-cta {
    display: none !important;
  }

  .hero-section,
  .section-block {
    padding: 56px 0;
  }

  .feature-grid,
  .contact-form,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    max-width: 440px;
    margin: 0 auto;
  }

  .contact-form .full-width {
    grid-column: auto;
  }

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

  .theme-toggle,
  .text-button,
  .primary-button,
  .secondary-button,
  .login-button {
    flex: 1 1 auto;
    min-height: 48px; /* Touch friendly */
  }

  .creator-card {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    align-items: center;
  }

  .creator-tags {
    justify-content: center;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
}
