/* ==============================================
   UNASHAMED — Design System & Styles
   Dark masculine aesthetic, amber accents, 2026 trends
   ============================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text-primary: #f5f0eb;
  --text-secondary: #a8a29e;
  --text-muted: #6b6560;
  --accent: #d4a853;
  --accent-hover: #e6be6a;
  --accent-glow: rgba(212, 168, 83, 0.15);
  --border: rgba(255, 255, 255, 0.06);
  --danger: #ef4444;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', var(--font-body);

  /* Spacing */
  --section-padding: clamp(80px, 12vh, 140px);
  --container-width: 1100px;
  --container-padding: clamp(20px, 5vw, 40px);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

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

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

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2em;
}

p:last-child {
  margin-bottom: 0;
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-secondary);
}

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

/* --- Sections --- */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 3rem;
  opacity: 0.5;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 var(--section-padding);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 6px 16px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 4px;
}

.hero h1 {
  color: var(--text-primary);
  margin-bottom: 0.3em;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-description {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1rem;
  letter-spacing: 0.02em;
}

.hero-price .price-old {
  text-decoration: line-through;
  color: #ef4444;
  font-weight: 700;
  font-size: 1.05rem;
}

/* Book Cover (CSS-rendered) */
.hero-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.book-3d {
  perspective: 1200px;
}

.book {
  width: 320px;
  height: 460px;
  position: relative;
  transform: rotateY(-12deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
  cursor: default;
}

.book:hover {
  transform: rotateY(-6deg) rotateX(1deg);
}

.book-front {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 4px 12px 12px 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 30px;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(212, 168, 83, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  backface-visibility: hidden;
}

.book-front::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), rgba(212, 168, 83, 0.2));
  border-radius: 4px 0 0 4px;
}

.book-spine {
  position: absolute;
  left: -25px;
  top: 0;
  width: 25px;
  height: 100%;
  background: linear-gradient(to right, #0d0d0d, #1a1a1a);
  transform: rotateY(90deg);
  transform-origin: right;
  border-radius: 4px 0 0 4px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.4);
}

.book-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #d4a853 0%, #f0d48a 50%, #d4a853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-align: center;
}

.book-line {
  width: 50px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 1rem;
  opacity: 0.5;
}

.book-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
}

.book-author {
  position: absolute;
  bottom: 30px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 16px 36px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.25);
}

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

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-large {
  font-size: 1.25rem;
  padding: 20px 48px;
}

/* ========================================
   SECTION: I KNOW YOU
   ======================================== */
.know-you {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.know-you .lead {
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  color: var(--text-primary);
  margin-bottom: 3rem;
  max-width: 700px;
}

.know-you-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.know-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 36px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
}

.know-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212, 168, 83, 0.15);
  transform: translateY(-4px);
}

.know-card h3 {
  color: var(--accent);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}

.know-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.know-you-closing {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.know-you-closing p {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  font-weight: 600;
}

/* ========================================
   SECTION: SHAME IS THE ENEMY
   ======================================== */
.shame-enemy {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.shame-enemy .shame-lines {
  list-style: none;
  margin: 2.5rem 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.shame-enemy .shame-lines li {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  padding: 0.6em 0;
  border-bottom: 1px solid var(--border);
}

.shame-enemy .shame-lines li em {
  color: var(--text-primary);
  font-style: italic;
}

blockquote {
  border-left: 3px solid var(--accent);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: var(--bg-card);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-primary);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
}

blockquote cite {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
}

/* ========================================
   SECTION: WAY OUT
   ======================================== */
.way-out-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 32px);
  transition: all 0.4s var(--ease);
}

.pillar:hover {
  border-color: rgba(212, 168, 83, 0.15);
  transform: translateY(-2px);
}

.pillar h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.pillar p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================================
   SECTION: MODULES
   ======================================== */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 3rem;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.module-item {
  background: var(--bg-secondary);
  padding: clamp(24px, 3vw, 32px);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.5rem;
  align-items: start;
  transition: background 0.3s var(--ease);
}

.module-item:hover {
  background: var(--bg-card-hover);
}

.module-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1.3;
}

.module-content h4 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.module-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================================
   SECTION: IS THIS YOU
   ======================================== */
.for-you-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

.for-list,
.not-list {
  list-style: none;
}

.for-list h3 {
  color: var(--accent);
}

.not-list h3 {
  color: var(--text-muted);
}

.for-list li,
.not-list li {
  padding: 0.7em 0;
  padding-left: 1.5em;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  border-bottom: 1px solid var(--border);
}

.for-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.not-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.8em;
}

/* ========================================
   SECTION: WHO AM I
   ======================================== */
.about {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-content {
  max-width: 700px;
}

.about-content p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-signature {
  margin-top: 2rem;
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.7;
}

/* ========================================
   SECTION: PRICING
   ======================================== */
.pricing {
  text-align: center;
}

.pricing-card {
  max-width: 520px;
  margin: 3rem auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(40px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-format {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.pricing-price {
  margin-bottom: 0.5rem;
}

.pricing-price .old {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 0.5rem;
}

.pricing-price .current {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  padding: 4px 14px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 20px;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.6em 0;
  padding-left: 1.5em;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ========================================
   SECTION: FAQ
   ======================================== */
.faq-list {
  max-width: 700px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 600;
  text-align: left;
  padding: 1.5rem 2.5rem 1.5rem 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s var(--ease);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   SECTION: FINAL CTA
   ======================================== */
.final-cta {
  text-align: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.final-cta blockquote {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.final-cta .final-text {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  color: var(--text-secondary);
}

.final-cta .final-declaration {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

footer p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

footer .footer-links {
  margin-top: 0.8rem;
}

footer .footer-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0 0.8rem;
  transition: color 0.3s var(--ease);
}

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

/* ========================================
   SUPPORT PAGE
   ======================================== */
.support-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--section-padding) 0;
}

.support-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.support-form-wrap h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.support-form-wrap .lead {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s var(--ease);
}

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

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

.form-note {
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-cover {
    order: -1;
  }

  .book {
    width: 240px;
    height: 345px;
    transform: rotateY(-8deg) rotateX(2deg);
  }

  .book-title {
    font-size: 1.8rem;
  }

  .know-you-grid {
    grid-template-columns: 1fr;
  }

  .way-out-pillars {
    grid-template-columns: 1fr;
  }

  .for-you-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .module-item {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .book {
    width: 200px;
    height: 290px;
  }

  .book-title {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .pricing-card {
    padding: 30px 24px;
  }

  .pricing-price .current {
    font-size: 2.5rem;
  }
}

/* ========================================
   NAV (minimal top bar)
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 24px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 5px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--accent-hover);
  color: var(--bg-primary);
  transform: translateY(-1px);
}