/* Marketing site — page-level styles on top of tokens */

html, body { margin: 0; padding: 0; background: var(--bg); }

/* ==========================================================
   Global layout primitives
   ========================================================== */
.page { min-height: 100vh; display: flex; flex-direction: column; }
.page-main { flex: 1; }

/* ==========================================================
   Top nav
   ========================================================== */
.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  cursor: pointer;
  padding: 7px 11px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  transition: border-color var(--dur-micro) var(--ease-standard), background var(--dur-micro) var(--ease-standard);
}
.nav-hamburger:hover { border-color: var(--border-strong); background: var(--overlay-ink-04); }
@media (max-width: 768px) {
  .nav-hamburger { display: flex; align-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(14, 15, 17, 0.97);
    flex-direction: column;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--border);
    gap: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { padding: 12px 16px; width: 100%; }
}


.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 15, 17, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container-marketing);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-bottom: 6px;
  border-bottom: none !important;
}
.nav-brand::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 18px; height: 1.5px;
  background: var(--brass);
}
.nav-brand .nav-brand-suffix {
  font-size: 11px; font-weight: 500;
  color: var(--ink-subtle);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-left: 2px;
  position: relative;
  top: -1px;
}
.nav-links {
  display: flex; gap: 4px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-link {
  font-size: 14px; font-weight: 500;
  color: var(--ink-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-1);
  cursor: pointer;
  transition: color var(--dur-micro) var(--ease-standard), background var(--dur-micro) var(--ease-standard);
  border: none !important;
}
.nav-link:hover { color: var(--ink); background: var(--overlay-ink-04); }
.nav-link.active { color: var(--brass); }
.nav-cta-wrap { display: flex; align-items: center; gap: 10px; }
.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  cursor: pointer;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.nav-lang:hover { color: var(--ink); border-color: var(--border-strong); background: var(--surface-sunken); }
.nav-lang .lang-current { color: var(--ink); font-weight: 600; }
.nav-lang .lang-sep { color: var(--ink-subtle); }
.nav-lang .lang-alt { color: var(--ink-subtle); }
.nav-lang:hover .lang-alt { color: var(--brass); }

/* ==========================================================
   Hero blocks
   ========================================================== */
.hero {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
}
.hero-deep     { background: var(--bg-deep); }
.hero-utility  { padding: 100px 0 56px; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(201,169,106,0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(90deg, rgba(201,169,106,0.035) 1px, transparent 1px) 0 0 / 96px 96px;
  mask-image: radial-gradient(ellipse at 30% 40%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 0%, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%; top: 20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,169,106,0.08), transparent 60%);
  pointer-events: none;
  filter: blur(4px);
}
.hero-inner {
  position: relative;
  max-width: var(--container-marketing);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: end;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 96px 0 72px; }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 6.4vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--ink-bright);
  max-width: 14ch;
  text-wrap: balance;
}
.hero-headline .accent { color: var(--brass); font-style: italic; font-weight: 500; }
.hero-subheadline {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-secondary);
  max-width: 52ch;
  margin-top: 28px;
  text-wrap: pretty;
}
.hero-meta {
  display: flex; flex-direction: column; gap: 28px;
  padding-bottom: 8px;
}
.hero-meta-item .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.hero-meta-item .value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.hero-cta-row { margin-top: 40px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================
   Section primitives
   ========================================================== */
.section-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 72px;
}
@media (max-width: 960px) {
  .section-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}
.section-header .eyebrow-col { padding-top: 8px; }
.section-header .section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink-bright);
  max-width: 22ch;
  text-wrap: balance;
}
.section-header .section-lede {
  font-size: 17px;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 60ch;
}

/* Section dividers */
.section-brass-rule {
  display: block;
  width: 64px; height: 1px;
  background: var(--brass);
  margin-bottom: 14px;
}

/* ==========================================================
   Pillar cards (Home Section 3)
   ========================================================== */
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 40px;
  display: flex; flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color var(--dur-short) var(--ease-standard), transform var(--dur-short) var(--ease-standard);
}
.pillar:hover { border-color: var(--brass); }
.pillar .pillar-index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pillar .pillar-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink-bright);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 18ch;
}
.pillar .pillar-copy {
  font-size: 15px;
  color: var(--ink-secondary);
  line-height: 1.6;
  max-width: 44ch;
}
.pillar .pillar-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
  color: var(--brass);
  border: none !important;
  padding-top: 24px;
  border-top: 1px solid var(--border) !important;
  border-radius: 0 !important;
}
.pillar .pillar-link:hover { color: var(--brass-bright); }
.pillar .pillar-link .arrow { transition: transform var(--dur-short) var(--ease-standard); }
.pillar:hover .pillar-link .arrow { transform: translateX(4px); }

/* ==========================================================
   Process steps
   ========================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.process.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .process, .process.four { grid-template-columns: 1fr; gap: 40px; } }

.step {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.step .step-num {
  position: absolute;
  top: -1px;
  left: 0;
  height: 2px;
  width: 40px;
  background: var(--brass);
}
.step .step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.step .step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-bright);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 14px;
  text-wrap: balance;
}
.step .step-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-secondary);
  max-width: 40ch;
}

/* ==========================================================
   Why Lanidora — side cards
   ========================================================== */
.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 960px) { .why { grid-template-columns: 1fr; } }

.why-card {
  background: var(--surface);
  padding: 48px 36px;
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform var(--dur-medium) var(--ease-standard);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card .why-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.14em;
}
.why-card .why-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink-bright);
  line-height: 1.2;
  max-width: 20ch;
}
.why-card .why-body {
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* ==========================================================
   Platform strip
   ========================================================== */
.platform-strip {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-deep);
}
.platform-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: center;
  border-left: 1px solid var(--border);
}
.platform-row > div {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink-muted);
  height: 72px;
  transition: color var(--dur-short) var(--ease-standard);
}
.platform-row > div:hover { color: var(--ink); }
.platform-row .platform-other {
  font-family: var(--font-text);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-subtle);
}
@media (max-width: 900px) {
  .platform-row { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================
   CTA banner
   ========================================================== */
.cta-banner {
  background: var(--bg-deep);
  padding: 120px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  left: 50%; top: -1px;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--brass);
}
.cta-inner {
  max-width: 720px; margin: 0 auto; padding: 0 var(--gutter);
  text-align: center;
}
.cta-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--ink-bright);
  margin-bottom: 20px;
  text-wrap: balance;
}
.cta-copy {
  font-size: 17px;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
  text-wrap: pretty;
}

/* ==========================================================
   Footer
   ========================================================== */
.footer {
  background: var(--graphite-950);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-marketing);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass) 50%, transparent);
  opacity: 0.4;
}
.footer-inner {
  max-width: var(--container-marketing);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer-brand {
  display: flex; flex-direction: column;
  gap: 16px;
}
.footer-brand .brand-mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
  padding-bottom: 8px;
  align-self: flex-start;
}
.footer-brand .brand-mark::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 24px; height: 1.5px;
  background: var(--brass);
}
.footer-brand .brand-tag {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 32ch;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink-secondary);
  border: none !important;
}
.footer-col a:hover { color: var(--brass); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-subtle);
  letter-spacing: 0.06em;
}
@media (max-width: 700px) {
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ==========================================================
   Services page — service blocks
   ========================================================== */
.service-block {
  padding: 120px 0;
  position: relative;
}
.service-block:not(:last-child) { border-bottom: 1px solid var(--border); }
.service-block.alt { background: var(--surface-sunken); }

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-grid.reverse .service-text { order: 2; }
.service-grid.reverse .service-meta { order: 1; }
@media (max-width: 960px) {
  .service-grid, .service-grid.reverse { grid-template-columns: 1fr; gap: 48px; }
  .service-grid.reverse .service-text, .service-grid.reverse .service-meta { order: 0; }
}

.service-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-bright);
  text-wrap: balance;
  max-width: 18ch;
  margin-bottom: 28px;
}
.service-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-secondary);
  text-wrap: pretty;
  margin-bottom: 40px;
}

.features { list-style: none; margin: 0; padding: 0; }
.features li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.features li:last-child { border-bottom: 1px solid var(--border); }
.features .feat-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.12em;
  padding-top: 2px;
}
.features .feat-title {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
  font-size: 15px;
}
.features .feat-body {
  display: block;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 56ch;
}

.outcome-box {
  border: 1px solid var(--border-brass);
  background: var(--overlay-brass-08);
  padding: 32px 36px;
  position: relative;
}
.outcome-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: var(--brass);
}
.outcome-box .outcome-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.outcome-box .outcome-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  text-wrap: pretty;
  margin: 0;
  max-width: none;
}

/* ==========================================================
   Partners page
   ========================================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 960px) { .category-grid { grid-template-columns: 1fr; } }

.category {
  background: var(--surface);
  padding: 48px 40px;
}
.category.dashed { border: 1px dashed var(--border-strong); background: transparent; }
.category .cat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.category .cat-descriptor {
  font-size: 15px;
  color: var(--ink-secondary);
  line-height: 1.55;
  margin-bottom: 28px;
  text-wrap: pretty;
  max-width: 48ch;
}
.category ul { list-style: none; margin: 0; padding: 0; }
.category ul li {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.category ul li:last-child { border-bottom: 1px solid var(--border); }
.category .plat-name {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.category .plat-desc {
  display: block;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.55;
}
.category.open .open-body {
  font-size: 15px;
  color: var(--ink-secondary);
  line-height: 1.65;
  text-wrap: pretty;
  max-width: 52ch;
}

/* ==========================================================
   Contact page
   ========================================================== */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 56px;
  position: relative;
}
.contact-form-wrap::before {
  content: "";
  position: absolute;
  top: -1px; left: 32px;
  width: 56px; height: 2px;
  background: var(--brass);
}
@media (max-width: 700px) { .contact-form-wrap { padding: 32px 24px; } }

.form-intro {
  font-size: 15px;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 60ch;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.form-submit-row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.form-privacy {
  font-size: 12px;
  color: var(--ink-subtle);
  line-height: 1.5;
  max-width: 52ch;
}
.form-privacy a { color: var(--ink-muted); border-bottom: 1px solid var(--border); }
.form-privacy a:hover { color: var(--brass); border-bottom-color: var(--brass); }

.direct-contact {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 48px;
}
@media (max-width: 700px) { .direct-contact { grid-template-columns: 1fr; gap: 16px; } }
.direct-contact .dc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.direct-contact .dc-value {
  font-size: 15px;
  color: var(--ink);
}
.direct-contact .dc-email {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--brass);
  letter-spacing: 0.01em;
  border: none !important;
}

/* ==========================================================
   Misc
   ========================================================== */
.kicker-line {
  display: block;
  width: 80px; height: 1px;
  background: var(--brass);
  margin-bottom: 24px;
}

.divider-dot {
  color: var(--brass);
  margin: 0 10px;
  opacity: 0.6;
}
