/* ═══════════════════════════════════════════════
   ARIS — OFFICIAL SITE STYLESHEET
   aris.metaplexus.io
   ═══════════════════════════════════════════════ */

:root {
  --bg: #050507;
  --bg-section: #09090D;
  --text: #F0F2FA;
  --text-muted: #8A9AB0;

  /* ARIS — luminous white */
  --accent: #E8EDF8;
  --accent-mid: #8A9AB8;
  --accent-deep: #2A3040;
  --accent-glow: rgba(232, 237, 248, 0.07);
  --accent-glow-strong: rgba(232, 237, 248, 0.16);

  --border: #0D0D14;
  --border-light: #18181F;

  --mono: 'DM Mono', monospace;
  --serif: 'Instrument Serif', Georgia, serif;
  --display: 'Syne', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: var(--bg); }

/* ── LAYOUT ── */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; position: relative; }
.sec-alt { background: var(--bg-section); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%   { box-shadow: 0 0 12px var(--accent-glow); }
  100% { box-shadow: 0 0 28px var(--accent-glow-strong); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 5, 7, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  text-shadow: 0 0 20px var(--accent-glow-strong);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover  { color: var(--text); }
.nav-link.active { color: var(--accent); }

.btn-nav {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-nav:hover {
  background: #fff;
  box-shadow: 0 0 20px var(--accent-glow-strong);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-muted);
  transition: all 0.25s;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 28px var(--accent-glow-strong);
}

.btn-ghost {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border-light);
  padding: 13px 28px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--accent-mid);
}

/* ── PRICE TAG ── */
.price-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-deep);
  padding: 6px 14px;
  margin-top: 16px;
  opacity: 0.85;
}

/* ── SECTION TYPOGRAPHY ── */
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.7;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.section-headline em {
  font-style: italic;
  color: var(--accent);
}

.section-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.section-body + .section-body { margin-top: 16px; }

.what-rule {
  width: 40px;
  height: 1px;
  background: var(--accent-mid);
  margin-bottom: 28px;
  opacity: 0.5;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: min(900px, calc(100% - 48px));
  height: 1px;
  background: var(--border-light);
}
.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0.6;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.15s forwards;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 1.0;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
  text-shadow: 0 0 32px var(--accent-glow-strong);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.45s forwards;
}

.hero-support {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}

.hero-price {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.62s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.75s forwards;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 148px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: min(900px, calc(100% - 48px));
  height: 1px;
  background: var(--border-light);
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.6;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}
.page-hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.25s forwards;
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.page-hero-support {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.page-hero-price {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.58s forwards;
}
.page-hero-cta {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.68s forwards;
}

/* ── THREE-CELL GRID ── */
.three-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  margin-top: 40px;
}
.grid-cell {
  background: var(--bg);
  padding: 32px 28px;
}
.sec-alt .grid-cell { background: var(--bg-section); }

.cell-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 14px;
  opacity: 0.8;
}
.cell-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text);
}
.cell-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── TWO-CELL GRID ── */
.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  margin-top: 40px;
}
.two-grid .grid-cell { background: var(--bg); }
.sec-alt .two-grid .grid-cell { background: var(--bg-section); }

/* ── WHAT LIST ── */
.what-list {
  list-style: none;
  margin-top: 40px;
  display: grid;
  gap: 1px;
  background: var(--border-light);
}
.what-list li {
  background: var(--bg);
  padding: 22px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: start;
  line-height: 1.7;
}
.sec-alt .what-list li { background: var(--bg-section); }
.what-list-num {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-mid);
  opacity: 0.65;
  padding-top: 2px;
}

/* ── FOR LIST ── */
.for-list {
  list-style: none;
  margin-top: 36px;
  display: grid;
  gap: 1px;
  background: var(--border-light);
}
.for-list li {
  background: var(--bg);
  padding: 18px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: baseline;
  gap: 14px;
  line-height: 1.7;
}
.sec-alt .for-list li { background: var(--bg-section); }
.for-list li::before {
  content: '—';
  color: var(--accent-mid);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── STEPS ── */
.steps-grid {
  display: grid;
  gap: 1px;
  background: var(--border-light);
  margin-top: 40px;
}
.step {
  background: var(--bg);
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}
.sec-alt .step { background: var(--bg-section); }
.step-num {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-mid);
  opacity: 0.6;
  padding-top: 4px;
}
.step-content {}
.step-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}
.step-body {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── DEEPER SUPPORT BLOCK ── */
.deeper-block {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  padding: 36px 32px;
  margin-top: 40px;
}
.deeper-block-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.deeper-block-note {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--accent-mid);
  opacity: 0.55;
  margin-top: 20px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

/* ── ZOOM PLACEHOLDER ── */
.zoom-placeholder {
  border: 1px solid var(--border-light);
  background: var(--bg-section);
  padding: 64px 32px;
  text-align: center;
  margin-top: 40px;
  position: relative;
}
.zoom-placeholder-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-mid);
  opacity: 0.5;
  margin-bottom: 16px;
}
.zoom-placeholder-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  opacity: 0.4;
  line-height: 1.6;
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 104px 0 120px;
  position: relative;
}
.cta-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.6;
}
.cta-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.cta-headline em {
  font-style: italic;
  color: var(--accent);
}
.cta-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-price {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.5;
  margin-top: 20px;
}

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  margin-top: 40px;
}
.testimonial-card {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.sec-alt .testimonial-card { background: var(--bg-section); }
.testimonial-quote {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  flex: 1;
}
.testimonial-quote::before {
  content: '\201C';
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--accent-mid);
  opacity: 0.4;
  margin-bottom: 12px;
}
.testimonial-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text);
  margin-top: 20px;
}
.testimonial-role {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-mid);
  opacity: 0.6;
  margin-top: 4px;
}

/* ── THANK YOU ── */
.thankyou-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  text-align: center;
}
.thankyou-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  opacity: 0.5;
}
.thankyou-icon::after {
  content: '✓';
  font-size: 1rem;
  color: var(--accent);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border-light);
  padding: 48px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.footer-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 10px;
  text-shadow: 0 0 16px var(--accent-glow-strong);
}
.footer-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.35;
  letter-spacing: 0.04em;
  max-width: 380px;
  line-height: 1.65;
  margin-top: 6px;
}
.footer-copy {
  font-size: 0.6rem;
  color: var(--text-muted);
  opacity: 0.2;
  letter-spacing: 0.08em;
  margin-top: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  padding-top: 4px;
}
.footer-nav a {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.3;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-nav a:hover { opacity: 0.7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { max-width: 100%; padding: 0 24px; }
  section { padding: 72px 0; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(5, 5, 7, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-light);
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .three-grid       { grid-template-columns: 1fr; }
  .two-grid         { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  section { padding: 60px 0; }
  .hero { padding: 80px 0 56px; }
  .page-hero { padding: 110px 0 60px; }
  .cta-section { padding: 72px 0 88px; }

  .step { grid-template-columns: 60px 1fr; gap: 16px; }
  .what-list li { grid-template-columns: 72px 1fr; }

  .hero-cta,
  .page-hero-cta { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
