/* =========================================================
   OraqqleNorðr — Landing Page Styles
   Theme: deep black with antique gold, occult luxury
   ========================================================= */

:root {
  --bg: #07070a;
  --bg-2: #0c0c10;
  --bg-3: #111118;
  --ink: #f3ead3;
  --ink-2: #b9b09a;
  --ink-3: #807762;
  --gold: #c8a14b;
  --gold-2: #e8c97a;
  --gold-3: #8a6f33;
  --gold-deep: #5a4720;
  --line: rgba(200, 161, 75, 0.22);
  --line-strong: rgba(200, 161, 75, 0.55);

  --font-display: "Cinzel", "Cormorant Garamond", serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;

  --maxw: 1240px;
  --maxw-narrow: 880px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--gold-2); font-weight: 400; }
strong { color: var(--ink); font-weight: 600; }

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--maxw); padding: 0 28px; margin: 0 auto; }
.container.narrow { max-width: var(--maxw-narrow); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt { margin-top: 22px; }
.w-full { width: 100%; }

/* ----- Typography ----- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
}
.kicker {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  display: inline-block;
  position: relative;
  padding: 0 20px;
}
.kicker::before, .kicker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}
.kicker::before { left: -8px; }
.kicker::after  { right: -8px; }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 6.2vw, 78px);
  line-height: 1.06;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
  color: var(--ink);
  text-shadow: 0 2px 40px rgba(0,0,0,.6);
}
.display em { font-style: italic; color: var(--gold-2); }
.display__accent {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 60%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.display--sm { font-size: clamp(28px, 4vw, 48px); font-family: var(--font-serif); font-weight: 400; font-style: italic; }

.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin: 0 0 28px;
}
.h2 em { font-style: italic; color: var(--gold-2); }

.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.prose p { color: var(--ink-2); margin: 0 0 18px; }
.prose .pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  border-left: 1px solid var(--line-strong);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
}
.emphasis {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold-2);
  letter-spacing: 0.03em;
  font-size: clamp(18px, 1.6vw, 22px);
}
.muted { color: var(--ink-3); }
.small { font-size: 14px; }
.micro {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 14px 0 0;
}
.micro em { font-style: italic; color: var(--gold); text-transform: none; letter-spacing: 0; }

.bullets { list-style: none; padding: 0; margin: 18px 0; }
.bullets li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--ink-2);
}
.bullets li::before {
  content: "△";
  position: absolute;
  left: 0; top: 2px;
  color: var(--gold);
  font-size: 12px;
}
.bullets--gold li { color: var(--ink); }

.rune-mark { color: var(--gold-2); font-size: 1.2em; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px 38px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s ease;
  position: relative;
}
.btn--sm { padding: 11px 22px; font-size: 11px; letter-spacing: .22em; }
.btn--lg { padding: 22px 48px; font-size: 14px; }
.btn--gold {
  color: #1a1305;
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 55%, var(--gold-3) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 rgba(0,0,0,.3),
    0 12px 40px -12px rgba(200,161,75,.55);
}
.btn--gold:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -1px 0 rgba(0,0,0,.3),
    0 18px 50px -10px rgba(200,161,75,.8);
}
.btn--ghost {
  color: var(--gold-2);
  background: transparent;
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  background: rgba(200,161,75,.06);
}

/* ----- Nav ----- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(7,7,10,.85) 0%, rgba(7,7,10,0) 100%);
  backdrop-filter: blur(8px);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .15em;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.nav__brand em { color: var(--gold-2); font-style: italic; }
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color .25s;
}
.nav__links a:hover { color: var(--gold-2); }
@media (max-width: 880px) { .nav__links { display: none; } }

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.7) saturate(.85);
  transform: scale(1.05);
  animation: heroDrift 30s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  to { transform: scale(1.12) translateY(-10px); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(7,7,10,.2) 0%, rgba(7,7,10,.85) 60%, rgba(7,7,10,1) 100%),
    linear-gradient(180deg, rgba(7,7,10,.4) 0%, rgba(7,7,10,0) 30%, rgba(7,7,10,.95) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.78  0 0 0 0 0.63  0 0 0 0 0.29  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  text-align: center;
  max-width: 920px;
}
.hero__cta { margin-top: 14px; }
.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}

/* ----- Sections ----- */
.section {
  padding: 130px 0;
  position: relative;
}
.section--dark {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200,161,75,.05) 0%, transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section .narrow { text-align: center; }
.section .prose { text-align: left; max-width: 720px; margin: 0 auto; }
.section .narrow > h2, .section .narrow > .kicker, .section .narrow > .prose { text-align: center; }
.section .narrow > .prose { text-align: center; }

.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.split .h2 { margin-top: 12px; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 30px; } }

/* ----- Revolving Cards Carousel ----- */
.carousel-section {
  padding: 130px 0 90px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200,161,75,.08) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.carousel-stage {
  position: relative;
  width: 100%;
  height: 560px;
  margin: 60px 0;
  perspective: 1600px;
  perspective-origin: 50% 35%;
}
.carousel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 400px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
  animation: spin 36s linear infinite;
}
@keyframes spin {
  from { transform: translate(-50%, -50%) rotateY(0deg); }
  to   { transform: translate(-50%, -50%) rotateY(360deg); }
}
.carousel:hover { animation-play-state: paused; }

.tarot-card {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  /* placed by JS as rotateY(angle) translateZ(radius) */
}
.tarot-card__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.9),
    0 0 0 1px rgba(200,161,75,.25),
    inset 0 0 40px rgba(0,0,0,.4);
  background: #000;
}
.tarot-card__face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tarot-card__face--back {
  transform: rotateY(180deg);
}

/* Vignette under carousel */
.carousel-stage::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(200,161,75,.18) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

/* ----- Pillars ----- */
.pillars {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative;
  padding: 44px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(0,0,0,.4) 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all .4s ease;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
}
.pillar:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.pillar:hover::before { opacity: 1; }
.pillar__mark {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-2);
  margin-bottom: 18px;
  text-shadow: 0 0 30px rgba(200,161,75,.4);
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 14px;
  letter-spacing: .02em;
}
.pillar p { color: var(--ink-2); margin: 0; font-size: 16.5px; line-height: 1.65; }

/* ----- Aetts ----- */
.aetts {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .aetts { grid-template-columns: 1fr; } }
.aett {
  padding: 40px 32px 36px;
  background: linear-gradient(180deg, rgba(200,161,75,.04) 0%, rgba(0,0,0,.3) 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: center;
  position: relative;
}
.aett__num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .4em;
  color: var(--gold);
  margin-bottom: 14px;
}
.aett h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--ink);
}
.aett__focus { color: var(--ink-2); font-size: 16px; margin: 0 0 16px; min-height: 90px; }
.aett__key { color: var(--gold-2); font-style: italic; font-size: 15px; margin: 0 0 22px; }
.aett__runes {
  font-size: 28px;
  letter-spacing: .25em;
  color: var(--gold);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ----- Video ----- */
.video { max-width: 1080px; margin: 60px auto 0; }
.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.8);
}
.video__poster {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.55) sepia(.3);
}
.video__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  color: var(--gold-2);
  font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.video__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(200,161,75,.15);
}
.video__play span { padding-left: 4px; }
.video__corners span {
  position: absolute;
  width: 30px; height: 30px;
  border: 1px solid var(--gold);
}
.video__corners span:nth-child(1) { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.video__corners span:nth-child(2) { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.video__corners span:nth-child(3) { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.video__corners span:nth-child(4) { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

/* ----- Metrics ----- */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 760px) { .metrics { grid-template-columns: 1fr; } }
.metric {
  text-align: center;
  padding: 44px 24px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.3);
}
.metric--accent { border-color: var(--gold); background: rgba(200,161,75,.06); }
.metric__value {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  color: var(--gold-2);
  font-weight: 600;
  line-height: 1;
}
.metric__label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 14px;
}

/* ----- Plans ----- */
.plans {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 980px) { .plans { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } }
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 48px 36px;
  background: linear-gradient(180deg, rgba(200,161,75,.04) 0%, rgba(0,0,0,.3) 100%);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.plan--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(200,161,75,.1) 0%, rgba(0,0,0,.3) 100%);
  box-shadow: 0 30px 80px -20px rgba(200,161,75,.3);
  transform: translateY(-12px);
}
@media (max-width: 980px) { .plan--featured { transform: none; } }
.plan__ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1305;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  font-weight: 600;
}
.plan header { text-align: center; padding-bottom: 28px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.plan__name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .08em;
  color: var(--ink);
  margin: 0 0 16px;
}
.plan__price {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold-2);
  margin: 0;
  font-weight: 600;
}
.plan__price span {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: 0;
}
.plan ul { list-style: none; padding: 0; margin: 0 0 32px; flex: 1; }
.plan li {
  position: relative;
  padding-left: 24px;
  margin: 12px 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
}
.plan li::before {
  content: "△";
  position: absolute; left: 0; top: 3px;
  color: var(--gold);
  font-size: 10px;
}

/* ----- FAQ (parchment cards) ----- */
.faq-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }
.faq {
  position: relative;
  padding: 44px 40px 40px;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='600' viewBox='0 0 400 600'><defs><filter id='grain'><feTurbulence baseFrequency='0.65' numOctaves='3'/><feColorMatrix values='0 0 0 0 0.45  0 0 0 0 0.3  0 0 0 0 0.15  0 0 0 0.25 0'/></filter></defs><rect width='100%25' height='100%25' filter='url(%23grain)'/></svg>"),
    url("../images/parchment.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: #2a1d0a;
  border-radius: 2px;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.8),
    inset 0 0 80px rgba(120, 70, 20, .3);
  overflow: hidden;
}
.faq::before {
  /* faded background rune watermark */
  content: attr(data-rune);
  position: absolute;
  right: -20px; bottom: -80px;
  font-size: 280px;
  font-family: serif;
  color: rgba(80, 50, 20, .12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.faq h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .04em;
  color: #4a2e0a;
  margin: 0 0 16px;
  position: relative;
}
.faq p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.65;
  color: #3a2810;
  margin: 0;
  position: relative;
}
.faq p em { color: #6b4a18; font-style: italic; }
.faq p strong { color: #2a1808; }

/* ----- Finale ----- */
.finale {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}
.finale__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.4);
}
.finale__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(7,7,10,.6) 0%, rgba(7,7,10,.95) 80%);
}
.finale__inner { position: relative; z-index: 2; }
.finale .display { margin-bottom: 30px; }

/* ----- Footer ----- */
.footer {
  padding: 60px 0 50px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .15em;
  font-size: 15px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__brand em { color: var(--gold-2); font-style: italic; }
.footer__links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer__links a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color .25s;
}
.footer__links a:hover { color: var(--gold-2); }
.footer__copy {
  width: 100%;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 30px 0 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

/* ----- Reveal animations ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Reduce carousel speed on small screens for performance */
@media (max-width: 760px) {
  .carousel-stage { height: 480px; }
  .carousel { width: 200px; height: 333px; }
  .section { padding: 90px 0; }
  .finale { padding: 100px 0; }
}
