/* Trident Rose Media */

:root {
  color-scheme: dark;

  --navy: #1B2A41;
  --deck: #16283E;
  --navy-3: #223751;
  --rose: #D64933;
  --rose-dark: #B93B26;
  --paper: #F4F3EE;
  --gray: #8C99A6;
  --gray-light: #C6CFD7;
  --line: rgba(244, 243, 238, 0.10);
  --radius: 10px;
  --max: 1060px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  color: var(--paper);
  background: var(--deck);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .price, .step-num, .btn, .logo {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { max-width: 100%; display: block; }

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

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--paper);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.logo:hover { text-decoration: none; }
.logo img { width: 32px; height: 32px; flex-shrink: 0; }
.logo .sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--gray);
  align-self: flex-end;
  padding-bottom: 0.32em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--rose);
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  padding: 15px 32px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.16s ease, transform 0.16s ease;
}
.btn:hover {
  background: var(--rose-dark);
  color: var(--paper);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-sm { padding: 10px 20px; font-size: 0.94rem; }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  padding: 96px 0 104px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 73, 51, 0.16) 0%, transparent 66%);
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 1; }

.hero-mark {
  width: 88px;
  height: 88px;
  margin-bottom: 30px;
}

.eyebrow {
  display: inline-block;
  color: var(--rose);
  font-weight: 600;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  margin-bottom: 20px;
}

.hero p.lead {
  font-size: 1.24rem;
  color: var(--gray-light);
  max-width: 620px;
  margin: 26px 0 18px;
}

.hero p.sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 36px;
}

/* ---------- Rule ---------- */
.rule {
  height: 3px;
  background: linear-gradient(90deg, var(--rose) 0%, var(--rose) 22%, var(--line) 22%, var(--line) 100%);
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-deck { background: var(--deck); }
.section-navy { background: var(--navy); }

.section-head { max-width: 620px; margin-bottom: 46px; }
.section-head p { margin-top: 14px; color: var(--gray-light); font-size: 1.06rem; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step {
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.section-navy .step { background: var(--deck); }

.step-num {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.step p { color: var(--gray-light); font-size: 1rem; }

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

.tier {
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
}
.section-navy .tier { background: var(--deck); }

.tier h3 { margin-bottom: 8px; }

.price {
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 20px;
}

.tier ul { list-style: none; margin-top: auto; }
.tier li {
  color: var(--gray-light);
  font-size: 0.98rem;
  padding: 9px 0 9px 20px;
  position: relative;
  border-top: 1px solid var(--line);
}
.tier li:first-child { border-top: 0; }
.tier li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 8px;
  height: 2px;
  background: var(--rose);
}

/* ---------- Spec strip ---------- */
.spec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.spec-item .k {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
}
.spec-item .v {
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 8px;
}

/* ---------- Closing note ---------- */
.note {
  font-size: 1.12rem;
  color: var(--gray-light);
  max-width: 640px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--rose);
  padding: 72px 0;
  color: var(--paper);
}
.cta-band h2 { color: var(--paper); }
.cta-band p { margin: 14px 0 30px; font-size: 1.1rem; max-width: 540px; font-weight: 500; }
.cta-band .btn { background: var(--navy); }
.cta-band .btn:hover { background: var(--navy-3); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--gray);
  border-top: 1px solid var(--line);
  padding: 52px 0 40px;
  font-size: 0.95rem;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.footer-brand { max-width: 330px; }
.footer-brand .logo { margin-bottom: 12px; font-size: 1.2rem; }
.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 0.85rem;
  color: #62707D;
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-mark { animation: rise 0.7s ease-out both; }
  .hero h1 { animation: rise 0.7s ease-out 0.06s both; }
  .hero p.lead { animation: rise 0.7s ease-out 0.12s both; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 860px) {
  .steps, .tiers { grid-template-columns: 1fr; }
  .spec { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .hero { padding: 64px 0 72px; }
  .section { padding: 60px 0; }
  .hero-mark { width: 68px; height: 68px; }
  .header-inner { height: 64px; }
  .logo { font-size: 1.2rem; }
  .logo .sub { font-size: 0.6rem; letter-spacing: 0.26em; }
  .btn { width: 100%; text-align: center; }
  .btn-sm { width: auto; }
}
