/* Pearson Built — theme.css */

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

/* ── Design tokens ──────────────────────────────── */
:root {
  --bg:         #111110;
  --bg-2:       #191917;
  --bg-3:       #1f1f1d;
  --border:     #2a2a27;
  --text:       #e8e5df;
  --text-muted: #7a7870;
  --text-dim:   #4a4845;
  --accent:     #d97706;
  --accent-2:   #b45309;
  --accent-glow:rgba(217,119,6,0.15);
  --white:      #f5f2ec;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius:     4px;
  --max-w:      1100px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Layout helper ──────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav ────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17,17,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--text); }
.nav-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent);
  color: #000;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}
.nav-cta a:hover {
  background: var(--accent-2);
  box-shadow: 0 4px 14px var(--accent-glow);
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--text-muted);
  background: rgba(255,255,255,0.04);
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -5%, rgba(217,119,6,0.07) 0%, transparent 65%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.016'%3E%3Cpath d='M0 0h40v1H0zM0 0v40h1V0z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  padding: 4px 12px;
  border: 1px solid rgba(217,119,6,0.28);
  border-radius: 2px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 7.5vw, 92px);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 680px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 52px;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 560px;
}
.path-card {
  position: relative;
  padding: 28px 26px 30px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.22s ease;
  overflow: hidden;
  cursor: pointer;
}
.path-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.path-card:hover {
  border-color: rgba(217,119,6,0.28);
  background: var(--bg-3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.path-card:hover::after { transform: scaleX(1); }
.path-icon { font-size: 26px; margin-bottom: 14px; display: block; }
.path-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.path-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}
.path-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}
.path-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap 0.2s ease;
}
.path-card:hover .path-cta { gap: 10px; }

/* ── Service sections ───────────────────────────── */
.service-section { padding: 80px 0; }
.service-section + .service-section {
  border-top: 1px solid var(--border);
}
.section-header {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}
.section-tag { flex-shrink: 0; width: 100px; padding-top: 8px; }
.section-tag span {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 8px;
  border: 1px solid rgba(217,119,6,0.3);
  border-radius: 2px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-item {
  padding: 26px 22px;
  background: var(--bg-2);
  transition: background 0.2s ease;
}
.service-item:hover { background: var(--bg-3); }
.service-item-icon { font-size: 20px; margin-bottom: 10px; }
.service-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}
.service-item-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── How it works ───────────────────────────────── */
.how-section {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-header {
  text-align: center;
  margin-bottom: 56px;
}
.how-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.how-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.how-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  padding: 36px 32px;
  background: var(--bg);
  position: relative;
}
.step + .step { border-left: 1px solid var(--border); }
.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(217,119,6,0.12);
  line-height: 1;
  margin-bottom: 18px;
  user-select: none;
}
.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── About ──────────────────────────────────────── */
.about-section { padding: 80px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.about-left { }
.about-badge {
  width: 72px;
  height: 72px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}
.about-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.about-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.about-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.about-text p + p { margin-top: 14px; }
.about-text strong { color: var(--text); font-weight: 600; }
.about-traits {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trait {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.trait::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── Contact ────────────────────────────────────── */
.contact-section {
  padding: 80px 0 100px;
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.contact-info-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.contact-info-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}
.contact-notes { display: flex; flex-direction: column; gap: 12px; }
.contact-note {
  padding: 16px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.contact-note strong {
  color: var(--text);
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

/* Form */
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px;
}
.form-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 26px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 13px;
  transition: border-color 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%234a4845' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.form-group select option { background: var(--bg-2); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { margin-top: 6px; width: 100%; padding: 13px; font-size: 14px; }
.form-feedback {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  text-align: center;
  margin-top: 12px;
}
.form-feedback.success {
  display: block;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.28);
  color: #10b981;
}
.form-feedback.error {
  display: block;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.28);
  color: #ef4444;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
}
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 12px; color: var(--text-dim); }
.footer-loc { font-size: 12px; color: var(--text-dim); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .section-header { flex-direction: column; gap: 12px; }
  .section-tag { width: auto; padding-top: 0; }
}
@media (max-width: 768px) {
  .hero { padding: 64px 0 56px; }
  .hero-paths { grid-template-columns: 1fr; max-width: 100%; }
  .nav-links { display: none; }
  .steps { grid-template-columns: 1fr; }
  .step + .step { border-left: none; border-top: 1px solid var(--border); }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Deposit success page ───────────────────────── */
.deposit-success-section {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.deposit-success-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 560px;
  margin: 0 auto;
  padding: 56px 48px;
  text-align: center;
}
.deposit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 28px;
}
.deposit-icon--success {
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  border: 2px solid rgba(34,197,94,0.3);
}
.deposit-icon--error {
  background: rgba(239,68,68,0.12);
  color: #ef4444;
  border: 2px solid rgba(239,68,68,0.3);
}
.deposit-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.deposit-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.deposit-message {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
}
.deposit-message strong { color: var(--text); }
.deposit-next {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 32px;
}
.deposit-next strong {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.deposit-next ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.deposit-next ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 5px 0 5px 18px;
  position: relative;
}
.deposit-next ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.deposit-contact {
  color: var(--text-muted);
  margin-bottom: 28px;
}
.deposit-contact a {
  color: var(--accent);
  text-decoration: underline;
}
.deposit-home-btn { display: inline-block; }

/* ── Deposit links section on landing page ──────── */
.deposit-links-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0;
}
.deposit-links-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.deposit-links-info-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.deposit-links-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.deposit-links-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.deposit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.deposit-link-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s;
}
.deposit-link-card:hover { border-color: var(--accent); }
.deposit-link-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}
.deposit-link-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.deposit-link-btn {
  display: inline-block;
  margin-top: 4px;
  padding: 8px 14px;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.15s;
}
.deposit-link-btn:hover { background: var(--accent-2); }
@media (max-width: 768px) {
  .deposit-links-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .deposit-grid { grid-template-columns: 1fr; }
  .deposit-success-card { padding: 40px 24px; }
}
