/* ============================================
   Skye Meta — Design System
   ============================================ */

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

:root {
  /* Colors */
  --navy: #0a1628;
  --navy-light: #111d32;
  --slate: #2a3240;
  --gold: #c9a84c;
  --gold-hover: #d4b85e;
  --gold-dark: #b8952f;
  --cream: #f5f2ed;
  --cream-dark: #e8e4dd;
  --white: #ffffff;
  --gray-300: #94a3b8;
  --gray-400: #64748b;
  --gray-500: #475569;
  --gray-600: #334155;
  --border: rgba(201, 168, 76, 0.15);
  --border-light: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Cardo', Georgia, serif;
  --font-sans: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'DM Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-pad: 80px 0;
  --container-width: 1080px;
  --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-hover); }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: 3.2rem; letter-spacing: -0.02em; }
h2 { font-size: 2.2rem; letter-spacing: -0.01em; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 8px; }
h4 { font-size: 1.1rem; }

p {
  color: var(--gray-300);
  line-height: 1.7;
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-hover);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-300);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 40px 24px;
}

.mobile-nav.open { display: flex; flex-direction: column; }

.mobile-nav ul { list-style: none; }
.mobile-nav li { margin-bottom: 24px; }

.mobile-nav a {
  color: var(--cream);
  font-size: 1.2rem;
  font-family: var(--font-serif);
  text-decoration: none;
}

/* --- Hero --- */
.hero {
  padding: 160px 0 80px;
  text-align: center;
}

.hero h1 {
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 16px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: var(--gray-300);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image {
  display: block;
  max-width: 900px;
  width: 100%;
  margin: 48px auto 0;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* --- Section --- */
.section {
  padding: var(--section-pad);
}

.section-dark {
  background: var(--navy-light);
  padding: var(--section-pad);
}

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.section-dark .card {
  background: var(--navy);
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.card .btn-primary,
.card .btn-outline {
  margin-top: 20px;
}

/* --- Code Block --- */
pre {
  background: #0d1117;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 20px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--gray-300);
}

code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* Inline code */
p code, li code {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.8rem;
}

/* --- Feature List --- */
.feature-list {
  list-style: none;
  margin: 16px 0 24px;
}

.feature-list li {
  padding: 6px 0;
  color: var(--gray-300);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* Generic styled lists */
.styled-list {
  list-style: none;
  margin: 16px 0 24px;
}

.styled-list li {
  padding: 6px 0;
  color: var(--gray-300);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}

.styled-list li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* --- How It Works / Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  padding: 32px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.section-dark .step {
  background: var(--navy);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 { margin-bottom: 8px; }
.step p { color: var(--gray-300); font-size: 0.88rem; }

/* --- Two-Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col h2 {
  margin-bottom: 12px;
}

.two-col p {
  color: var(--gray-300);
  margin-bottom: 12px;
}

/* --- Trust Bar --- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 0 auto;
}

.pricing-grid-1 {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s;
}

.section-dark .pricing-card {
  background: var(--navy);
}

.pricing-card.featured {
  border-color: var(--gold);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 12px 0 8px;
}

.pricing-price span {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-family: var(--font-sans);
  font-weight: 400;
}

.pricing-card > p {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-card li {
  padding: 7px 0;
  color: var(--gray-300);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
  width: 100%;
  justify-content: center;
}

.pricing-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* --- Steps Grid --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.step-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.step-card code {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

/* --- Share Buttons --- */
.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.share-bar span {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--gray-300);
  background: var(--navy-light);
  cursor: pointer;
  transition: border-color 0.15s;
}

.share-btn:hover {
  border-color: var(--gold);
  color: #fff;
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.faq-item pre {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
  overflow-x: auto;
  margin: 12px 0;
}

.faq-item code {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

/* --- Chains Bar --- */
.chains-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.chain-pill {
  padding: 6px 14px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--gray-300);
  font-weight: 500;
}

/* --- Comparison Table --- */
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -24px;
  padding: 0 24px;
  position: relative;
}

.comparison-table-wrap::after {
  content: '';
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to right, transparent, var(--navy));
  pointer-events: none;
}

.comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.85rem;
  text-align: center;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding-bottom: 16px;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
  color: var(--cream);
  font-weight: 500;
}

.comparison-table td {
  color: var(--gray-400);
}

.comparison-table .highlight-col {
  background: rgba(201, 168, 76, 0.06);
  color: var(--white);
  font-weight: 600;
}

.comparison-table th.highlight-col {
  color: var(--gold);
  font-size: 0.8rem;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table .check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.comparison-table .cross {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* --- About / Bio --- */
.bio-card {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.bio-card img {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--border);
}

.bio-card p {
  color: var(--gray-300);
  margin-bottom: 12px;
}

/* --- Career / Roles --- */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.role-item {
  padding: 20px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.section-dark .role-item {
  background: var(--navy);
}

.role-item h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.role-item p {
  color: var(--gray-300);
  font-size: 0.85rem;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-method {
  display: block;
  padding: 24px;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
  text-decoration: none;
}

.contact-method:hover { border-color: var(--gold); }

.contact-method h3 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.contact-method p {
  color: var(--gray-300);
  font-size: 0.9rem;
  margin: 0;
}

/* --- Consultation Card --- */
.consultation-card {
  background: var(--navy-light);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 36px;
  margin-bottom: 32px;
  text-align: center;
}

.consultation-card h3 {
  margin-bottom: 8px;
}

.consultation-card p {
  color: var(--gray-300);
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 64px 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p {
  color: var(--gray-300);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--gray-400);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  text-align: center;
  color: var(--gray-500);
  font-size: 0.8rem;
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: 140px 0 48px;
  text-align: center;
}

.page-header h1 { margin-bottom: 12px; }
.page-header p {
  color: var(--gray-300);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.8rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px 0;
    --nav-height: 64px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.2rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .comparison-table-wrap::after { display: block; }

  .comparison-table {
    font-size: 0.78rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
    white-space: nowrap;
  }

  .comparison-table td:first-child,
  .comparison-table th:first-child {
    position: sticky;
    left: 0;
    background: var(--navy);
    z-index: 1;
  }

  .comparison-table .highlight-col {
    min-width: 80px;
  }

  .hero { padding: 120px 0 56px; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .card-grid,
  .card-grid-2 {
    grid-template-columns: 1fr;
  }

  .steps { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bio-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }

  .container { padding: 0 16px; }

  .trust-bar { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }

  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
