/* Reserver.ma — Corporate landing styles · SF Pro stack */

/* === Tokens === */
:root {
  /* Otels palette */
  --otels-deep: #1F7FE0;
  --otels-primary: #2E9CF0;
  --otels-bright: #4AB5F7;
  --otels-sky: #B7E0FA;
  --otels-mist: #EAF5FE;

  /* Ink & neutrals */
  --ink: #0B1220;
  --graphite: #1F2A3C;
  --slate: #475569;
  --steel: #94A3B8;
  --mist-neutral: #E6EBF2;
  --paper: #F7F8FA;
  --white: #FFFFFF;

  /* Rare accents */
  --gold: #C79A3C;
  --maroon: #7A1F2B;

  /* Type — SF Pro stack */
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;

  /* Spacing tokens */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 17px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --space-section: 80px;

  /* Radius tokens */
  --r-none: 0;
  --r-xs: 5px;
  --r-sm: 8px;
  --r-md: 11px;
  --r-lg: 18px;
  --r-pill: 9999px;

  /* Layout */
  --container: 1280px;
  --gutter: 32px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-text);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.374px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* === Type scale === */
.t-hero-display {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.28px;
}
.t-display-lg {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}
.t-display-md {
  font-family: var(--font-text);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.374px;
}
.t-lead {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.196px;
}
.t-lead-airy {
  font-family: var(--font-text);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
}
.t-tagline {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.19;
  letter-spacing: 0.231px;
}
.t-body-strong {
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.374px;
}
.t-body {
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -0.374px;
}
.t-caption {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: -0.224px;
}
.t-caption-strong {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.29;
  letter-spacing: -0.224px;
}
.t-button-large {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}
.t-button-utility {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.29;
  letter-spacing: -0.224px;
}
.t-fine-print {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.12px;
}
.t-micro-legal {
  font-family: var(--font-text);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.08px;
}
.t-nav-link {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.12px;
}

/* Eyebrow — used widely as small uppercase label */
.eyebrow {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--otels-deep);
}

.meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}

/* === Container === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* === Buttons === */
.btn-primary {
  background: linear-gradient(135deg, var(--otels-deep) 0%, var(--otels-primary) 50%, var(--otels-bright) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  padding: 14px 22px;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 8px 20px -10px rgba(46, 156, 240, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 12px 26px -10px rgba(46, 156, 240, 0.6);
}
.btn-primary.lg {
  padding: 16px 26px;
  font-size: 15px;
}
.btn-secondary {
  background: transparent;
  border: 1px solid var(--mist-neutral);
  color: var(--graphite);
  border-radius: var(--r-sm);
  padding: 13px 22px;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* === Header === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.header.scrolled {
  border-bottom-color: var(--mist-neutral);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 26px;
  width: auto;
}
.header-nav {
  display: flex;
  gap: 32px;
}
.header-nav a {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.224px;
  color: var(--graphite);
  position: relative;
  transition: color 0.2s ease;
}
.header-nav a:hover {
  color: var(--otels-deep);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  background: transparent;
  border: 1px solid var(--mist-neutral);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--graphite);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.lang-toggle:hover {
  border-color: var(--otels-primary);
  color: var(--otels-deep);
}
.lang-toggle .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--otels-primary);
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-right .btn-primary { display: none; }
}

/* === Section === */
section {
  padding: 120px 0;
  position: relative;
}
section.tight { padding: var(--space-section) 0; }

.sec-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: baseline;
}
.sec-head-left .eyebrow {
  display: block;
  margin-bottom: var(--space-md);
}
.sec-head-kicker {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--slate);
  text-wrap: pretty;
}
.sec-head-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin: 0 0 var(--space-lg) 0;
  text-wrap: balance;
}
.sec-head-title em {
  font-style: italic;
  color: var(--otels-deep);
}
.sec-head-lede {
  font-family: var(--font-text);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--graphite);
  max-width: 60ch;
  margin: 0;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .sec-head {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xxl);
  }
  section { padding: var(--space-section) 0; }
}

/* === Hero === */
.hero {
  padding-top: 152px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--otels-mist) 0%, transparent 60%),
    var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--otels-sky);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-xl);
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--otels-primary);
  box-shadow: 0 0 0 0 var(--otels-bright);
  animation: pulse 2.5s ease-out infinite;
}
.hero-eyebrow .eyebrow { color: var(--otels-deep); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 181, 247, 0.45); }
  100% { box-shadow: 0 0 0 14px rgba(74, 181, 247, 0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin: 0 0 var(--space-lg) 0;
  text-wrap: balance;
}
.hero-title .line { display: block; }
.hero-title .accent {
  background: linear-gradient(135deg, var(--otels-deep) 0%, var(--otels-primary) 60%, var(--otels-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.hero-lede {
  font-family: var(--font-text);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.1px;
  color: var(--graphite);
  max-width: 56ch;
  margin: 0 0 var(--space-xl) 0;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.hero-footnote {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--slate);
}

/* Hero right card */
.hero-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 0%, rgba(11, 18, 32, 0.04) 100%),
    linear-gradient(135deg, var(--otels-deep) 0%, var(--otels-primary) 55%, var(--otels-bright) 100%);
  padding: var(--space-xxl);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  box-shadow:
    0 30px 60px -30px rgba(31, 127, 224, 0.4),
    0 10px 30px -10px rgba(11, 18, 32, 0.2);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
}
.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.hero-card-label {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-label::before {
  content: '';
  width: 18px; height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.hero-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
}
.hero-card-main { position: relative; }
.hero-card-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.3px;
  margin: 0 0 var(--space-md) 0;
}
.hero-card-title em { font-style: italic; font-weight: 400; }
.hero-card-sub {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 32ch;
  margin: 0;
}
.hero-card-bottom {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-card-stat-v {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.hero-card-stat-l {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero strip */
.hero-strip {
  margin-top: var(--space-xxl);
  border-top: 1px solid var(--mist-neutral);
  border-bottom: 1px solid var(--mist-neutral);
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.hero-strip-item {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-strip-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--otels-primary);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* === Manifesto === */
.manifesto { background: var(--paper); }
.manifesto-intro {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1px;
  color: var(--graphite);
  max-width: 64ch;
  margin: 0 0 var(--space-xxl) 0;
  text-wrap: pretty;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}
.pillar {
  background: var(--white);
  border: 1px solid var(--mist-neutral);
  border-radius: var(--r-md);
  padding: 36px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pillar:hover {
  transform: translateY(-2px);
  border-color: var(--otels-sky);
  box-shadow: 0 20px 40px -20px rgba(31, 127, 224, 0.15);
}
.pillar-num {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--otels-deep);
  margin-bottom: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.pillar-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--mist-neutral);
}
.pillar-label {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.2px;
  color: var(--ink);
  margin: 0 0 var(--space-md) 0;
}
.pillar-body {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.1px;
  color: var(--slate);
  margin: 0;
  text-wrap: pretty;
}

/* === Products / Otels.ma === */
.products-hero {
  background: linear-gradient(180deg, var(--otels-mist) 0%, var(--white) 100%);
  border-radius: var(--r-lg);
  border: 1px solid var(--otels-sky);
  padding: var(--space-xxl);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
  margin-bottom: var(--space-xxl);
}
@media (max-width: 1024px) {
  .products-hero { grid-template-columns: 1fr; padding: 36px; }
}
.products-hero-left .eyebrow {
  margin-bottom: var(--space-lg);
  display: block;
}
.products-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.3px;
  margin: 0 0 var(--space-lg) 0;
  color: var(--ink);
  text-wrap: balance;
}
.products-hero-title em { font-style: italic; color: var(--otels-deep); }
.products-hero-lede {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.2px;
  color: var(--graphite);
  margin: 0 0 var(--space-xl) 0;
  text-wrap: pretty;
}
.products-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--r-sm);
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1px;
  transition: all 0.2s ease;
}
.products-hero-cta:hover {
  background: var(--otels-deep);
  transform: translateY(-1px);
}
.products-hero-domain {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: var(--space-md);
}
.products-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.products-hero-stat {
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--mist-neutral);
}
.products-hero-stat-v {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.3px;
  color: var(--otels-deep);
}
.products-hero-stat-u {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 6px;
}
.products-hero-stat-c {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.1px;
  color: var(--graphite);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--mist-neutral);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--mist-neutral);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
}
@media (max-width: 1024px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pillars-grid { grid-template-columns: 1fr; } }
.product-pillar {
  padding: var(--space-xl) var(--space-lg);
  border-right: 1px solid var(--mist-neutral);
  transition: background 0.2s ease;
}
.product-pillar:last-child { border-right: none; }
@media (max-width: 1024px) {
  .product-pillar {
    border-right: 1px solid var(--mist-neutral);
    border-bottom: 1px solid var(--mist-neutral);
  }
  .product-pillar:nth-child(2n) { border-right: none; }
}
.product-pillar:hover { background: var(--paper); }
.product-pillar-num {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--otels-primary);
  margin-bottom: var(--space-lg);
}
.product-pillar-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.2px;
  margin: 0 0 var(--space-sm) 0;
  color: var(--ink);
}
.product-pillar-body {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.1px;
  color: var(--slate);
  margin: 0;
  text-wrap: pretty;
}

/* === Capabilities === */
.capabilities { background: var(--paper); }
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mist-neutral);
  border: 1px solid var(--mist-neutral);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 1024px) { .capabilities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .capabilities-grid { grid-template-columns: 1fr; } }
.capability {
  background: var(--white);
  padding: 40px var(--space-xl);
  transition: background 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.capability:hover { background: var(--paper); }
.capability-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}
.capability-letter {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: var(--otels-deep);
  font-style: italic;
  letter-spacing: -0.3px;
}
.capability-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--steel);
}
.capability-title {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.25px;
  margin: 0 0 var(--space-sm) 0;
  color: var(--ink);
}
.capability-body {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.15px;
  color: var(--slate);
  margin: 0 0 var(--space-lg) 0;
  text-wrap: pretty;
  flex: 1;
}
.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cap-tag {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--r-xs);
  background: var(--otels-mist);
  color: var(--otels-deep);
}

/* === Numbers === */
.numbers {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-section) 0;
}
.numbers .eyebrow { color: var(--otels-bright); }
.numbers .sec-head-kicker { color: var(--steel); }
.numbers .sec-head-title { color: var(--white); }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 900px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
.number-cell {
  background: var(--ink);
  padding: 36px 28px;
}
.number-v {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.4px;
  color: var(--white);
  margin-bottom: var(--space-md);
}
.number-c {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--otels-bright);
  margin-bottom: 6px;
}
.number-s {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

/* === Sovereignty === */
.sovereignty-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) { .sovereignty-grid { grid-template-columns: 1fr; gap: var(--space-xxl); } }
.sovereignty-text p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05px;
  color: var(--graphite);
  margin: 0 0 var(--space-lg) 0;
  text-wrap: pretty;
}
.sovereignty-text p:last-child { margin-bottom: 0; }
.sovereignty-text p em { color: var(--otels-deep); font-style: italic; }
.sov-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--mist-neutral);
  border: 1px solid var(--mist-neutral);
  border-radius: var(--r-md);
  overflow: hidden;
}
.sov-kpi {
  background: var(--white);
  padding: var(--space-xl) var(--space-lg);
}
.sov-kpi-v {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.3px;
  color: var(--otels-deep);
  margin-bottom: var(--space-sm);
}
.sov-kpi-c {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.1px;
  color: var(--slate);
  text-wrap: pretty;
}

/* === Team === */
.team { background: var(--paper); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }
.member {
  background: var(--white);
  border: 1px solid var(--mist-neutral);
  border-radius: var(--r-md);
  padding: 40px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-xl);
  transition: border-color 0.3s ease;
}
.member:hover { border-color: var(--otels-sky); }
@media (max-width: 640px) {
  .member { grid-template-columns: 1fr; gap: var(--space-lg); padding: var(--space-xl) 28px; }
}
.member-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--otels-deep) 0%, var(--otels-primary) 55%, var(--otels-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  font-style: italic;
  letter-spacing: -0.3px;
  position: relative;
  box-shadow: 0 12px 30px -12px rgba(46, 156, 240, 0.5);
}
.member-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.35) 0%, transparent 35%);
  pointer-events: none;
}
.member-role {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--otels-deep);
  margin-bottom: var(--space-xs);
}
.member-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0 0 var(--space-md) 0;
  color: var(--ink);
}
.member-bio {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.15px;
  color: var(--slate);
  margin: 0 0 var(--space-md) 0;
  text-wrap: pretty;
}
.member-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.member-tag {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--otels-mist);
  color: var(--otels-deep);
}

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: var(--space-xxl); } }
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.35px;
  color: var(--ink);
  margin: var(--space-lg) 0 var(--space-lg) 0;
  text-wrap: balance;
}
.contact-lede {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.2px;
  color: var(--graphite);
  margin: 0 0 var(--space-xl) 0;
  max-width: 50ch;
  text-wrap: pretty;
}
.contact-address {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}
.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--mist-neutral);
  border: 1px solid var(--mist-neutral);
  border-radius: var(--r-md);
  overflow: hidden;
}
.contact-block {
  background: var(--white);
  padding: 28px var(--space-lg);
  transition: background 0.2s ease;
  cursor: pointer;
}
.contact-block:hover { background: var(--otels-mist); }
.contact-block-label {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--otels-deep);
  margin-bottom: var(--space-md);
}
.contact-block-value {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: var(--space-xs);
  word-break: break-word;
}
.contact-block-sub {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.1px;
  color: var(--slate);
}

/* === Footer === */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 var(--space-xl) 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--space-xxl);
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}
.footer-brand img {
  height: 30px;
  width: auto;
  margin-bottom: var(--space-lg);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.05px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32ch;
  margin: 0;
  text-wrap: pretty;
}
.footer-col-title {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--otels-bright);
  margin-bottom: var(--space-md);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.1px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer-col li a { display: block; color: inherit; }
.footer-col li:hover { color: var(--white); }
.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.footer-legal {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: -0.05px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 80ch;
}
.footer-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
}

/* === Reveal animations === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================== */
/*           SUB-PAGE STYLES (pages.html)                  */
/* ====================================================== */

.page-hero {
  padding: 152px 0 var(--space-xxl) 0;
  background: linear-gradient(180deg, var(--otels-mist) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--mist-neutral);
}
.page-hero-inner {
  max-width: 880px;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--slate);
}
.page-breadcrumb a { color: var(--slate); transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--otels-deep); }
.page-breadcrumb .sep { color: var(--steel); }
.page-cat {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--otels-deep);
  margin-bottom: var(--space-md);
  display: block;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin: 0 0 var(--space-lg) 0;
  text-wrap: balance;
}
.page-title em { font-style: italic; color: var(--otels-deep); }
.page-lede {
  font-family: var(--font-text);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: var(--graphite);
  max-width: 60ch;
  margin: 0;
  text-wrap: pretty;
}

.page-body {
  padding: 80px 0 120px;
}
.page-body-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .page-body-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}
.page-toc {
  position: sticky;
  top: 100px;
  font-family: var(--font-text);
}
.page-toc-title {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: var(--space-md);
}
.page-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}
.page-toc li {
  counter-increment: toc;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.1px;
  color: var(--graphite);
  margin-bottom: var(--space-sm);
  display: flex;
  gap: 10px;
  cursor: pointer;
  transition: color 0.2s;
}
.page-toc li::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--otels-primary);
  letter-spacing: 0.05em;
}
.page-toc li:hover { color: var(--otels-deep); }

.page-content section.psec {
  padding: 0 0 64px 0;
  border-top: none;
}
.page-content section.psec + section.psec {
  padding-top: 64px;
  border-top: 1px solid var(--mist-neutral);
}
.psec-eyebrow {
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--otels-deep);
  margin-bottom: var(--space-md);
  display: block;
}
.psec-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin: 0 0 var(--space-lg) 0;
  text-wrap: balance;
}
.psec-title em { font-style: italic; color: var(--otels-deep); }
.psec-intro {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.1px;
  color: var(--graphite);
  margin: 0 0 var(--space-lg) 0;
  max-width: 64ch;
  text-wrap: pretty;
}
.psec-body {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.2px;
  color: var(--graphite);
}
.psec-body p { margin: 0 0 var(--space-md) 0; text-wrap: pretty; }
.psec-body p:last-child { margin-bottom: 0; }
.psec-body strong { font-weight: 600; color: var(--ink); }
.psec-body ul {
  margin: var(--space-md) 0;
  padding: 0;
  list-style: none;
}
.psec-body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: var(--space-xs);
}
.psec-body ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px; height: 6px;
  background: var(--otels-primary);
  border-radius: 1px;
  transform: rotate(45deg);
}

/* Page table */
.ptable {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-family: var(--font-text);
  font-size: 14px;
  letter-spacing: -0.1px;
}
.ptable th, .ptable td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--mist-neutral);
  vertical-align: top;
}
.ptable th {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--paper);
}
.ptable td:first-child {
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

/* Page cards */
.pgrid {
  display: grid;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
.pgrid-2 { grid-template-columns: repeat(2, 1fr); }
.pgrid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .pgrid-2, .pgrid-3 { grid-template-columns: 1fr; }
}
.pcard {
  background: var(--paper);
  border: 1px solid var(--mist-neutral);
  border-radius: var(--r-md);
  padding: var(--space-lg);
  transition: all 0.2s ease;
}
.pcard:hover {
  border-color: var(--otels-sky);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(31, 127, 224, 0.15);
}
.pcard-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-sm);
}
.pcard-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--otels-primary);
}
.pcard-tag {
  font-family: var(--font-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-xs);
  background: var(--otels-mist);
  color: var(--otels-deep);
}
.pcard-tag.gold { background: rgba(199, 154, 60, 0.12); color: var(--gold); }
.pcard-tag.maroon { background: rgba(122, 31, 43, 0.08); color: var(--maroon); }
.pcard-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.25px;
  margin: 0 0 var(--space-xs) 0;
  color: var(--ink);
}
.pcard-meta {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.05px;
  color: var(--slate);
  margin-bottom: var(--space-sm);
}
.pcard-body {
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.15px;
  color: var(--graphite);
  margin: 0;
  text-wrap: pretty;
}

/* Timeline */
.tline {
  list-style: none;
  margin: var(--space-lg) 0 0;
  padding: 0;
  position: relative;
}
.tline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--mist-neutral);
}
.tline-item {
  position: relative;
  padding: 0 0 var(--space-lg) 36px;
}
.tline-item::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--otels-primary);
  box-shadow: 0 0 0 4px var(--otels-mist);
}
.tline-item.done::before {
  background: var(--otels-primary);
}
.tline-when {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--otels-deep);
  margin-bottom: var(--space-xs);
}
.tline-what {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: var(--ink);
  margin: 0 0 6px 0;
}
.tline-detail {
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.15px;
  color: var(--slate);
  margin: 0;
}

/* Highlight pill */
.hpill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--otels-mist);
  color: var(--otels-deep);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.1px;
}

/* Quote block */
.pquote {
  border-left: 3px solid var(--otels-primary);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  background: var(--paper);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.pquote p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.1px;
  font-style: italic;
  color: var(--graphite);
  margin: 0 0 var(--space-xs) 0;
}
.pquote cite {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  font-style: normal;
}

/* CTA block at bottom of page */
.pcta {
  margin-top: 80px;
  padding: var(--space-xxl);
  background: linear-gradient(135deg, var(--otels-deep) 0%, var(--otels-primary) 55%, var(--otels-bright) 100%);
  border-radius: var(--r-lg);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  pointer-events: none;
}
.pcta-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.3px;
  margin: 0 0 var(--space-md) 0;
  position: relative;
  text-wrap: balance;
}
.pcta-sub {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.1px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto var(--space-lg) auto;
  max-width: 50ch;
  position: relative;
}
.pcta a {
  position: relative;
  background: var(--white);
  color: var(--otels-deep);
  padding: 14px 26px;
  border-radius: var(--r-sm);
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}
.pcta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(11, 18, 32, 0.4);
}

/* === Coming soon === */
.coming-soon {
  text-align: center;
  padding: 80px 24px;
}
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--otels-mist);
  color: var(--otels-deep);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.coming-soon h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin: 0 0 var(--space-md) 0;
}
.coming-soon p {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.1px;
  color: var(--slate);
  max-width: 50ch;
  margin: 0 auto var(--space-xl) auto;
}
