/* =========================================
   INDIGO EGO — Homepage Stylesheet
   ========================================= */

/* --- Google Fonts Fallback --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=DM+Sans:wght@300;400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --bg:           #0B0A0F;
  --surface:      #11121A;
  --indigo:       #2C2A6B;
  --indigo-light: #3D3A8C;
  --indigo-deep:  #16143A;
  --amber:        #C9853A;
  --amber-dim:    #8A5C26;
  --amber-glow:   rgba(201,133,58,0.15);
  --text:         #F0EDE6;
  --text-muted:   #8A8A9A;
  --text-dim:     #5A5A6A;
  --border:       rgba(240,237,230,0.08);
  --border-amber: rgba(201,133,58,0.25);

  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --section-pad:  clamp(80px, 10vw, 140px);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--indigo-light); color: var(--text); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--indigo); border-radius: 3px; }

/* --- Shared label style --- */
.hn-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hn-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
  opacity: 0.6;
}

/* =========================================
   NAV
   ========================================= */

.hn-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11,10,15,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.hn-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hn-nav__brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.hn-nav__brand:hover { color: var(--amber); }

.hn-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.hn-nav__link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.hn-nav__link:hover { color: var(--text); }

.hn-nav__cta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--border-amber);
  padding: 8px 18px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.hn-nav__cta:hover {
  background: var(--amber-glow);
  color: var(--text);
}

.hn-nav__cta--accent {
  color: var(--amber);
  border-color: var(--amber);
  background: var(--amber-glow);
  position: relative;
  text-decoration: none;
}
.hn-nav__cta--accent::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 3px;
  height: 1px;
  background: var(--amber);
  opacity: 0.8;
}
.hn-nav__cta--accent:hover {
  color: var(--text);
  background: var(--amber);
}
.hn-nav__cta--accent:hover::after { opacity: 0; }

/* =========================================
   HERO
   ========================================= */

.hn-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px; /* nav height */
}

.hn-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hn-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hn-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11,10,15,0.75) 0%,
      rgba(11,10,15,0.45) 40%,
      rgba(11,10,15,0.80) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(44,42,107,0.35) 0%, transparent 70%);
}

.hn-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: clamp(80px, 12vh, 160px) clamp(24px, 5vw, 80px) clamp(40px, 8vh, 100px);
}

.hn-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: inline-block;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: clamp(32px, 5vh, 56px);
  animation: fadeUp 0.6s var(--ease-out) both;
}

.hn-hero__brand {
  font-family: var(--font-serif);
  font-size: clamp(64px, 11vw, 152px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: clamp(24px, 4vh, 40px);
  text-shadow: 0 0 80px rgba(44,42,107,0.5);
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.hn-hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  margin-bottom: clamp(20px, 3vh, 32px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}
.hn-hero__tagline em { font-style: italic; color: var(--text); }

.hn-hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: clamp(32px, 5vh, 52px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.hn-hero__cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--amber);
  padding: 16px 32px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}
.hn-hero__cta:hover { background: #D9924A; transform: translateY(-2px); }

.hn-hero__scroll {
  position: absolute;
  bottom: 40px;
  right: clamp(24px, 5vw, 80px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hn-hero__scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--amber-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hn-hero__scroll-text {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}

/* =========================================
   CREED
   ========================================= */

.hn-creed {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
}

.hn-creed__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hn-creed__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  filter: brightness(0.25) saturate(0.8);
}

.hn-creed__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,15,0.5) 0%, rgba(22,20,58,0.7) 50%, rgba(11,10,15,0.6) 100%);
}

.hn-creed__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.hn-creed__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(40px, 6vh, 64px);
}
.hn-creed__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
  opacity: 0.6;
}

.hn-creed__list {
  list-style: none;
  counter-reset: creed;
  margin-bottom: clamp(48px, 8vh, 80px);
}

.hn-creed__line {
  counter-increment: creed;
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.3;
  color: rgba(240,237,230,0.55);
  letter-spacing: -0.01em;
  padding: clamp(12px, 2vh, 20px) 0;
  border-bottom: 1px solid rgba(240,237,230,0.05);
  display: flex;
  align-items: baseline;
  gap: 20px;
  transition: color 0.3s;
}
.hn-creed__line::before {
  content: counter(creed, decimal-leading-zero);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--amber);
  opacity: 0.5;
  flex-shrink: 0;
  padding-top: 4px;
}
.hn-creed__line:hover { color: var(--text); }

/* Final creed line — the anchor statement */
.hn-creed__line--anchor {
  color: var(--text);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  border-bottom: none;
  padding-bottom: 0;
}
.hn-creed__line--anchor::before { opacity: 1; }

.hn-creed__frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: clamp(24px, 4vh, 40px);
  border-top: 1px solid var(--border);
}

.hn-creed__desc {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
}

.hn-creed__poster-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--amber);
  border: 1px solid var(--border-amber);
  padding: 12px 22px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.hn-creed__poster-link:hover { background: var(--amber-glow); color: var(--text); }

/* =========================================
   PRODUCTS
   ========================================= */

.hn-products {
  background: var(--surface);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.hn-products__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.hn-products__header {
  margin-bottom: clamp(48px, 7vh, 72px);
}

.hn-products__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--text);
  margin-top: 20px;
  letter-spacing: -0.02em;
}

.hn-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.hn-product {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.3s, transform 0.2s;
}
.hn-product:hover {
  border-color: var(--border-amber);
  transform: translateY(-4px);
}

.hn-product--flagship {
  border-color: rgba(201,133,58,0.3);
  background: rgba(201,133,58,0.05);
}

.hn-product--free {
  border-color: rgba(60,58,140,0.4);
  background: rgba(44,42,107,0.1);
}

.hn-product__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-glow);
  border: 1px solid var(--border-amber);
  padding: 4px 10px;
  border-radius: 2px;
}

.hn-product__badge--free {
  color: var(--indigo-light);
  background: rgba(44,42,107,0.3);
  border-color: rgba(60,58,140,0.5);
}

.hn-product__icon {
  color: var(--amber);
  opacity: 0.7;
}

.hn-product__name {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hn-product__prop {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.hn-product__cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--border-amber);
  padding: 10px 18px;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}
.hn-product__cta:hover { background: var(--amber-glow); color: var(--text); }

.hn-product__cta--free {
  color: var(--indigo-light);
  border-color: rgba(60,58,140,0.5);
}
.hn-product__cta--free:hover {
  background: rgba(44,42,107,0.3);
  color: var(--text);
}

/* =========================================
   LETTERS
   ========================================= */

.hn-letters {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.hn-letters__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 50%, #1A1830 0%, transparent 70%),
    var(--indigo-deep);
  z-index: 0;
}

/* Decorative amber lines — same pattern as philosophy in theme.css */
.hn-letters__bg::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--amber-dim) 30%, var(--amber-dim) 70%, transparent 100%);
  opacity: 0.25;
}
.hn-letters__bg::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--amber-dim) 30%, var(--amber-dim) 70%, transparent 100%);
  opacity: 0.25;
}

.hn-letters__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  text-align: center;
}

.hn-letters__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.8;
  display: block;
  margin-bottom: 28px;
}

.hn-letters__headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hn-letters__sub {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hn-letters__form { width: 100%; }

.hn-letters__field {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 12px;
}

.hn-letters__input {
  flex: 1;
  background: rgba(240,237,230,0.06);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 18px;
  border-radius: 2px 0 0 2px;
  outline: none;
  transition: border-color 0.2s;
}
.hn-letters__input::placeholder { color: var(--text-dim); }
.hn-letters__input:focus { border-color: var(--border-amber); }

.hn-letters__submit {
  background: var(--amber);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 14px 24px;
  border: none;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.hn-letters__submit:hover { background: #D9924A; }
.hn-letters__submit:disabled { opacity: 0.6; cursor: default; }

.hn-letters__legal {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.hn-letters__success {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  color: var(--amber);
  margin-top: 16px;
}

/* =========================================
   ABOUT / PHILOSOPHY
   ========================================= */

.hn-about {
  background: var(--bg);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.hn-about__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.hn-about__header {
  margin-bottom: clamp(40px, 6vh, 64px);
}

.hn-about__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--text);
  margin-top: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hn-about__story {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: clamp(48px, 7vh, 80px);
  max-width: 720px;
}

.hn-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hn-pillar {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding: clamp(28px, 4vh, 48px) 0;
  border-top: 1px solid var(--border);
}
.hn-pillar:last-child { border-bottom: 1px solid var(--border); }

.hn-pillar__num {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  color: var(--indigo);
  line-height: 1;
  padding-top: 8px;
  text-shadow: 0 0 40px rgba(44,42,107,0.4);
}

.hn-pillar__name {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--amber);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hn-pillar__desc {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
}

/* =========================================
   FOOTER
   ========================================= */

.hn-footer {
  background: var(--indigo-deep);
  padding: clamp(48px, 7vw, 96px) 0 clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--border);
}

.hn-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.hn-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--border);
}

.hn-footer__name {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  display: block;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.hn-footer__motto {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.8vw, 18px);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  opacity: 0.8;
  max-width: 340px;
  line-height: 1.5;
}

.hn-footer__nav {
  display: flex;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}

.hn-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hn-footer__col-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.hn-footer__link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  transition: color 0.2s;
}
.hn-footer__link:hover { color: var(--text); }

.hn-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hn-footer__copy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.hn-footer__legal {
  display: flex;
  gap: 20px;
}

.hn-footer__legal-link {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.hn-footer__legal-link:hover { color: var(--text-muted); }

/* =========================================
   ENTRY — Reading Path Card
   ========================================= */

.hn-entry {
  background: var(--surface);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.hn-entry__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  text-align: center;
}

.hn-entry__headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 24px 0 12px;
}

.hn-entry__sub,
.hn-entry__sub-link {
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 28px;
}

.hn-entry__chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  padding: 12px 0 28px;
}
.hn-entry__chain svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  color: var(--text-dim);
}

.hn-entry__chip {
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s, color 0.2s;
}
.hn-entry__chip:hover {
  border-color: var(--border-amber);
  color: var(--text);
}

.hn-entry__chip--lead {
  border-color: var(--border-amber);
  color: var(--text);
}

.hn-entry__cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  background: var(--amber);
  color: var(--bg);
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.hn-entry__cta:hover {
  background: #D9924A;
  transform: translateY(-2px);
}

.hn-entry__sub-link { display: block; margin-top: 20px; font-size: 13px; }
.hn-entry__sub-link a {
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
}
.hn-entry__sub-link a:hover {
  color: var(--amber);
  border-color: var(--border-amber);
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {
  .hn-nav__links {
    gap: 12px;
  }
  .hn-nav__link { display: none; }
  .hn-nav__link:last-of-type { display: block; }

  .hn-hero__scroll { display: none; }

  .hn-creed__frame { flex-direction: column; }

  .hn-products__grid { grid-template-columns: 1fr; }

  .hn-letters__field { flex-direction: column; }
  .hn-letters__input {
    border-right: 1px solid var(--border);
    border-bottom: none;
    border-radius: 2px 2px 0 0;
  }
  .hn-letters__submit {
    border-radius: 0 0 2px 2px;
  }

  .hn-pillar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hn-pillar__num { font-size: 36px; padding-top: 0; }

  .hn-footer__top { flex-direction: column; }
  .hn-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hn-hero__brand { font-size: 52px; }
  .hn-hero__tagline { font-size: 26px; }
  .hn-footer__nav { flex-direction: column; }
}
