/* ============================================
   Lumora Studio — Premium Creative AI Platform
   ============================================ */

:root {
  --cream: #F7F3EE;
  --cream-dark: #EDE8E0;
  --charcoal: #1C1B19;
  --charcoal-soft: #2A2825;
  --warm-white: #FDFCFA;
  --copper: #B87333;
  --copper-light: #D4956A;
  --sage: #5C7A5E;
  --sage-light: #8BA88D;
  --navy: #0E1520;
  --navy-mid: #1A2332;
  --accent-blue: #6BA3C7;
  --gold: #C9A962;
  --text: #1C1B19;
  --text-muted: #6B6560;
  --text-light: #9A948D;
  --border: rgba(28, 27, 25, 0.08);
  --shadow-sm: 0 2px 8px rgba(28, 27, 25, 0.06);
  --shadow-md: 0 8px 32px rgba(28, 27, 25, 0.1);
  --shadow-lg: 0 24px 64px rgba(28, 27, 25, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-desc {
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--warm-white);
}

.btn--primary:hover {
  background: var(--charcoal-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--cream);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--charcoal);
  background: var(--cream);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 0.95rem;
}

.btn--full {
  width: 100%;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(253, 252, 250, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--charcoal);
}

.nav__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 48px) 0 80px;
  background: var(--cream);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(184, 115, 51, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(92, 122, 94, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(184, 115, 51, 0.1);
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--copper);
}

.hero__desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 40px;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat span {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__visual {
  position: relative;
  height: 520px;
}

.hero__card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero__card--main {
  top: 0;
  right: 0;
  width: 75%;
  height: 85%;
  z-index: 2;
  animation: floatMain 6s ease-in-out infinite;
}

.hero__card--accent {
  bottom: 0;
  left: 0;
  width: 45%;
  height: 50%;
  z-index: 3;
  border: 4px solid var(--cream);
  animation: floatAccent 6s ease-in-out infinite 1s;
}

@keyframes floatMain {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatAccent {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Trust Bar ---- */
.trust {
  padding: 32px 0;
  background: var(--charcoal);
  color: var(--warm-white);
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust__inner p {
  font-size: 0.85rem;
  color: rgba(253, 252, 250, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trust__logos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust__logos span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.trust__logos span:hover {
  opacity: 1;
}

/* ---- Features ---- */
.features {
  padding: 120px 0;
  background: var(--warm-white);
}

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

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

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card--highlight {
  background: var(--charcoal);
  color: var(--warm-white);
  border-color: transparent;
}

.feature-card--highlight p {
  color: rgba(253, 252, 250, 0.7);
}

.feature-card--highlight .feature-card__icon {
  background: rgba(184, 115, 51, 0.2);
  color: var(--copper-light);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 115, 51, 0.1);
  border-radius: 12px;
  color: var(--copper);
  margin-bottom: 20px;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- Showcase ---- */
.showcase {
  padding: 120px 0;
  background: var(--navy);
  color: var(--warm-white);
}

.showcase .section-label {
  color: var(--copper-light);
}

.showcase .section-title {
  color: var(--warm-white);
}

.showcase__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.showcase__header .section-desc {
  color: rgba(253, 252, 250, 0.6);
  max-width: 400px;
  text-align: right;
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.showcase__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase__item:hover img {
  transform: scale(1.05);
}

.showcase__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.showcase__item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.showcase__item--tall {
  grid-row: span 2;
}

.showcase__item--wide {
  grid-column: span 2;
}

/* ---- Pricing ---- */
.pricing {
  padding: 120px 0;
  background: var(--cream);
}

.pricing__filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.pricing__filter {
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.pricing__filter:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.pricing__filter.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--warm-white);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.pricing-card {
  position: relative;
  padding: 32px 28px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.pricing-card--popular {
  border-color: var(--copper);
  box-shadow: 0 0 0 1px var(--copper), var(--shadow-md);
}

.pricing-card--popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--copper);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card--enterprise {
  background: var(--charcoal);
  color: var(--warm-white);
  border-color: transparent;
}

.pricing-card--enterprise .pricing-card__desc,
.pricing-card--enterprise .pricing-card__limits li {
  color: rgba(253, 252, 250, 0.65);
}

.pricing-card--enterprise .pricing-card__price span {
  color: rgba(253, 252, 250, 0.5);
}

.pricing-card__tier {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-card__seats {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 20px 0;
  flex-grow: 1;
}

.pricing-card__limits {
  list-style: none;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pricing-card--enterprise .pricing-card__limits {
  border-color: rgba(255,255,255,0.1);
}

.pricing-card__limits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0;
}

.pricing-card__limits li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-card--enterprise .pricing-card__limits li::before {
  background: var(--copper-light);
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card--enterprise .btn--primary {
  background: var(--copper);
}

.pricing-card--enterprise .btn--primary:hover {
  background: var(--copper-light);
}

.pricing__note {
  text-align: center;
  margin-top: 48px;
  padding: 20px 32px;
  background: rgba(184, 115, 51, 0.08);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing__note strong {
  color: var(--copper);
}

/* ---- Reseller ---- */
.reseller {
  padding: 120px 0;
  background: var(--warm-white);
}

.reseller__intro {
  text-align: center;
  margin-bottom: 56px;
}

.reseller__intro .section-desc {
  margin: 0 auto;
}

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

.reseller-card {
  padding: 40px 32px;
  background: var(--navy);
  color: var(--warm-white);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

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

.reseller-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.reseller-card__level {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 12px;
}

.reseller-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.reseller-card__pricing {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.reseller-card__wholesale {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.reseller-card__wholesale span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.5;
}

.reseller-card__retail {
  font-size: 0.85rem;
  color: var(--sage-light);
  margin-top: 8px;
}

.reseller-card__alloc {
  list-style: none;
  margin-bottom: 28px;
}

.reseller-card__alloc li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.reseller-card__alloc li strong {
  color: var(--warm-white);
}

.reseller-card__alloc li span {
  opacity: 0.6;
}

.reseller-card__features {
  list-style: none;
  margin-bottom: 28px;
}

.reseller-card__features li {
  font-size: 0.85rem;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  opacity: 0.75;
  line-height: 1.5;
}

.reseller-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage-light);
  font-weight: 600;
}

.reseller-card .btn--primary {
  background: var(--copper);
  width: 100%;
}

.reseller-card .btn--primary:hover {
  background: var(--copper-light);
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy-mid) 100%);
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.cta-banner__content p {
  color: rgba(253, 252, 250, 0.6);
  font-size: 1rem;
}

/* ---- FAQ ---- */
.faq {
  padding: 120px 0;
  background: var(--cream);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq__item summary {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--copper);
  transition: transform var(--transition);
}

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

.faq__item p {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-right: 40px;
}

/* ---- Contact ---- */
.contact {
  padding: 120px 0;
  background: var(--warm-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__perks {
  list-style: none;
  margin-top: 32px;
}

.contact__perks li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact__perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 600;
}

.contact__form {
  padding: 40px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--copper);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 12px;
  min-height: 20px;
}

.form-note.success {
  color: var(--sage);
}

.form-note.error {
  color: #c44;
}

/* ---- Footer ---- */
.footer {
  padding: 64px 0 32px;
  background: var(--charcoal);
  color: var(--warm-white);
}

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

.footer__brand p {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(253, 252, 250, 0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer__brand .nav__logo {
  color: var(--warm-white);
}

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 252, 250, 0.4);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(253, 252, 250, 0.65);
  padding: 6px 0;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--warm-white);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(253, 252, 250, 0.35);
}

/* ---- Policy Pages ---- */
.policy-page {
  background: var(--cream);
}

.policy-hero {
  padding: calc(var(--nav-height) + 56px) 0 48px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}

.policy-hero__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.policy-hero__meta {
  color: var(--text-light);
  font-size: 0.9rem;
}

.policy-content {
  padding: 0 0 96px;
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.policy-card section + section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.policy-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.policy-card p,
.policy-card li {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.policy-card ul {
  margin: 14px 0 0 18px;
}

.policy-card a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ---- Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card.hidden {
  display: none;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .showcase__item--tall,
  .showcase__item--wide {
    grid-row: auto;
    grid-column: auto;
  }

  .showcase__item {
    height: 220px;
  }

  .reseller__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--warm-white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }

  .nav--open .nav__actions {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(var(--nav-height) + 200px);
    left: 24px;
    right: 24px;
  }

  .hero__stats {
    gap: 24px;
  }

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

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

  .showcase__header .section-desc {
    text-align: left;
  }

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

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .policy-card {
    padding: 28px 22px;
  }

  .trust__inner {
    flex-direction: column;
    text-align: center;
  }
}
