/* Beyond the Segment — Marketing Site Stylesheet */
/* All pages share this file. No inline styles except where unavoidable. */

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0F0F0F;
  color: #F0F0F0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img, svg {
  display: block;
}

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --orange: #FC4C02;
  --orange-dark: #D93F00;
  --green: #1D9E75;
  --bg: #0F0F0F;
  --surface: #181818;
  --surface-2: #222222;
  --text: #F0F0F0;
  --text-muted: #888888;
  --text-dim: #555555;
  --border: rgba(255, 255, 255, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
}

/* =========================================================
   TYPOGRAPHY HELPERS
   ========================================================= */
.hero-headline {
  font-size: clamp(2.75rem, 5.75vw, 4.15rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.2;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.text-muted {
  color: var(--text-muted);
}

.text-dim {
  color: var(--text-dim);
}

.text-orange {
  color: var(--orange);
}

.text-green {
  color: var(--green);
}

.text-small {
  font-size: 13px;
}

.text-label {
  font-size: 12px;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--sm {
  padding: 56px 0;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 32px;
  height: 32px;
}

.nav__logo-text {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--orange);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
}

.nav__mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  gap: 12px;
}

.nav__mobile-menu.open {
  display: flex;
}

.nav__mobile-menu a {
  font-size: 15px;
  color: var(--text-muted);
  padding: 8px 0;
}

.nav__mobile-menu a:hover,
.nav__mobile-menu a.active {
  color: var(--orange);
}

.nav__mobile-menu .btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--orange);
  color: #ffffff;
}

.btn--primary:hover {
  background: var(--orange-dark);
  color: #ffffff;
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--full {
  width: 100%;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
}

/* =========================================================
   LOGO MARK SVG (inline)
   ========================================================= */
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 7px;
  flex-shrink: 0;
}

.logo-mark--lg {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.logo-mark svg {
  width: 22px;
  height: 22px;
}

.logo-mark--lg svg {
  width: 30px;
  height: 30px;
}

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.card--featured {
  border-color: var(--orange);
}

.card--surface2 {
  background: var(--surface-2);
}

/* =========================================================
   BADGE
   ========================================================= */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-muted);
}

.badge--orange {
  background: rgba(252, 76, 2, 0.12);
  border-color: rgba(252, 76, 2, 0.3);
  color: var(--orange);
}

.badge--green {
  background: rgba(29, 158, 117, 0.12);
  border-color: rgba(29, 158, 117, 0.3);
  color: var(--green);
}

/* Animated pulse dot — used inside the beta badge */
@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.badge-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: badge-pulse 2s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 4px;
  flex-shrink: 0;
}

/* =========================================================
   ICON WRAPPER
   ========================================================= */
.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.card--featured .icon-wrap {
  background: rgba(252, 76, 2, 0.12);
  border-color: rgba(252, 76, 2, 0.25);
}

.icon-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  padding: 96px 0 72px;
  text-align: center;
}

.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

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

.hero__subheadline {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero__small-print {
  font-size: 13px;
  color: var(--text-dim);
}

.hero__social-proof {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 32px;
}

/* =========================================================
   DASHBOARD MOCKUP
   ========================================================= */
.mockup-section {
  padding: 0 0 80px;
}

.mockup-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.mockup-frame__titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.mockup-frame__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-frame__dot--red   { background: #FF5F56; }
.mockup-frame__dot--amber { background: #FFBD2E; }
.mockup-frame__dot--green { background: #27C93F; }

.mockup-frame__label {
  font-size: 12px;
  color: var(--text-dim);
  margin-left: 8px;
}

.mockup-frame__body {
  padding: 0;
  overflow-x: auto;
}

/* Segment table inside mockup */
.seg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 860px;
}

.seg-table th {
  text-align: left;
  padding: 10px 12px;
  color: var(--text-dim);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  background: var(--surface-2);
}

.seg-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.seg-table tbody tr:last-child > td {
  border-bottom: none;
}

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

/* Column sizing */
.col-star    { width: 32px; padding-left: 14px !important; padding-right: 4px !important; }
.col-meta    { white-space: nowrap; }
.col-time    { white-space: nowrap; }
.col-leader  { min-width: 120px; }
.col-action  { width: 80px; }
.col-expand  { width: 36px; padding-right: 12px !important; text-align: right; }

/* Star */
.seg-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  line-height: 1;
}
.seg-star--on { color: var(--orange); }

/* Muted meta text (distance, grade, time) */
.seg-meta-text {
  color: var(--text-muted);
  font-size: 12px;
}

/* Leader cell */
.seg-leader-name {
  font-weight: 500;
  color: var(--text);
  font-size: 13px;
}
.seg-leader-efforts {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Strava external link button */
.strava-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  text-decoration: none;
}
.strava-link:hover {
  color: var(--orange);
  border-color: rgba(252, 76, 2, 0.3);
}
.strava-link svg {
  flex-shrink: 0;
}

/* Expand chevron button */
.seg-expand-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dim);
  padding: 4px 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.15s;
}
.seg-expand-btn:hover { color: var(--text-muted); }
.seg-expand-btn svg {
  transition: transform 0.35s ease;
  display: block;
}

/* Active/expanded row highlight */
.seg-row--active > td {
  background: rgba(252, 76, 2, 0.035) !important;
}
.seg-row--active .seg-expand-btn {
  color: var(--orange);
}
.seg-row--active .seg-expand-btn svg {
  transform: rotate(180deg);
}

/* Accordion expand row */
.seg-expand-row > td {
  padding: 0 !important;
  border-bottom: none;
}

.seg-expand-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease;
  opacity: 0;
}
.seg-expand-row.open .seg-expand-body {
  max-height: 340px;
  opacity: 1;
}
.seg-expand-row.open + tr > td {
  border-top: 1px solid var(--border);
}

/* Expand content grid */
.seg-expand-content {
  display: grid;
  grid-template-columns: 196px 1fr 168px;
  gap: 20px;
  padding: 18px 24px;
  background: rgba(252, 76, 2, 0.03);
  border-top: 1px solid rgba(252, 76, 2, 0.15);
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.seg-expand-map {
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.seg-expand-profile__label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
  font-weight: 500;
}

.seg-expand-profile__ends {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
.seg-expand-profile__ends span {
  font-size: 10px;
  color: var(--text-dim);
}

.seg-expand-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.seg-expand-stat__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  margin-bottom: 3px;
  font-weight: 500;
}
.seg-expand-stat__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
}

.seg-name {
  font-weight: 500;
  color: var(--text);
}

.seg-type {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px;
}

.seg-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.seg-badge--legend {
  background: rgba(252, 76, 2, 0.15);
  color: var(--orange);
  border: 1px solid rgba(252, 76, 2, 0.3);
}

.seg-badge--close {
  background: rgba(29, 158, 117, 0.12);
  color: var(--green);
  border: 1px solid rgba(29, 158, 117, 0.3);
}

.seg-badge--hunting {
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
  min-width: 80px;
}

.progress-bar__fill {
  height: 100%;
  border-radius: 3px;
  background: var(--orange);
}

.progress-bar__fill--green {
  background: var(--green);
}

/* =========================================================
   FEATURES SECTION
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 10px;
}

.feature-card__badge {
  margin-top: 16px;
}

/* =========================================================
   SOCIAL PROOF STRIP
   ========================================================= */
.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.proof-item:last-child {
  border-right: none;
}

.proof-item__value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.proof-item__label {
  font-size: 13px;
  color: var(--text-muted);
}

/* =========================================================
   PRICING CARDS
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card__tier {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.pricing-card__price-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-feature__check {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature__check--green { color: var(--green); }
.pricing-feature__check--orange { color: var(--orange); }

.pricing-card__small {
  margin-top: 12px;
  text-align: center;
}

/* =========================================================
   SECTION HEADER
   ========================================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header__heading {
  margin-bottom: 12px;
}

.section-header__sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* =========================================================
   HOW IT WORKS — STEPS
   ========================================================= */
.steps {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
}

.step__number {
  font-size: 52px;
  font-weight: 700;
  color: rgba(252, 76, 2, 0.25);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 12px;
}

.step__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.step__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================================
   FAQ — ACCORDION (details/summary)
   ========================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__q {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--text-dim);
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.15s;
}

.faq-item[open] summary::after {
  content: '\00D7';
  color: var(--orange);
}

.faq-item__a {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* =========================================================
   FOCUS VISIBLE — keyboard navigation
   ========================================================= */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-label {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}

.form-input,
.form-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  width: 100%;
  font-family: inherit;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(252, 76, 2, 0.4);
  outline: none;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.recaptcha-wrap {
  margin-bottom: 20px;
}

.form-submit {
  margin-top: 4px;
}

.success-message {
  display: none;
  padding: 32px;
  background: var(--surface);
  border: 1px solid rgba(29, 158, 117, 0.3);
  border-radius: var(--radius-md);
  text-align: center;
}

.success-message h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.success-message p {
  color: var(--text-muted);
  font-size: 15px;
}

.error-message {
  display: none;
  padding: 12px 16px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: var(--radius-sm);
  color: #f87171;
  font-size: 14px;
  margin-top: 12px;
}

.contact-aside {
  padding-top: 8px;
}

.contact-aside__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.contact-aside__email a {
  color: var(--orange);
  font-size: 15px;
}

.contact-aside__email a:hover {
  color: var(--orange-dark);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer__col-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer__nav a:hover {
  color: var(--text);
}

.footer__strava-attr {
  font-size: 13px;
  color: var(--orange);
  margin-top: 16px;
}

.footer__strava-attr a {
  color: var(--orange);
}

.footer__strava-attr a:hover {
  color: var(--orange-dark);
}

.footer__contact a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer__contact a:hover {
  color: var(--text);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

.footer__bottom-inner a {
  color: var(--text-dim);
  transition: color 0.15s;
}

.footer__bottom-inner a:hover {
  color: var(--text-muted);
}

.footer__bottom-sep {
  color: var(--text-dim);
  opacity: 0.4;
}

/* =========================================================
   PRICING PAGE HERO
   ========================================================= */
.page-hero {
  padding: 80px 0 56px;
  text-align: center;
}

.page-hero__headline {
  margin-bottom: 14px;
}

.page-hero__sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* =========================================================
   PRICING PAGE — FULL CARDS
   ========================================================= */
.pricing-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-full-card__header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-full-card__price {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--text);
  margin: 8px 0 4px;
}

.pricing-full-card__price-note {
  font-size: 14px;
  color: var(--text-dim);
}

.pricing-full-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-full-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-full-feature svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* =========================================================
   RESPONSIVE — TABLET (640px)
   ========================================================= */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-aside {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE (640px)
   ========================================================= */
@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .section--sm {
    padding: 40px 0;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .hero__subheadline {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    flex-direction: column;
  }

  .proof-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-full-grid {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom-inner {
    flex-direction: column;
    gap: 6px;
  }

  .footer__bottom-sep {
    display: none;
  }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .seg-table .col-meta,
  .seg-table .col-time,
  .seg-table .col-leader {
    display: none;
  }

  .seg-expand-content {
    grid-template-columns: 1fr;
  }

  .seg-expand-map {
    display: none;
  }

  .page-hero {
    padding: 56px 0 36px;
  }

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

  .radio-group {
    flex-direction: column;
    gap: 12px;
  }
}

/* =========================================================
   MOCKUP TITLEBAR ACTIONS (search + filter)
   ========================================================= */
.mockup-frame__titlebar {
  justify-content: flex-start;
}

.mockup-frame__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mockup-frame__filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--text-dim);
  padding: 2px 7px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  white-space: nowrap;
}

.mockup-frame__filter-chip svg {
  display: block;
  flex-shrink: 0;
}

.mockup-frame__search-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: default;
  color: var(--text-dim);
  padding: 2px 6px;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s, border-color 0.15s;
}

.mockup-frame__search-btn svg {
  display: block;
}

/* =========================================================
   TABLE SORT INDICATORS
   ========================================================= */
.th-sortable {
  cursor: default;
  user-select: none;
}

.th-sort-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 3px;
  opacity: 0.3;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* =========================================================
   ACCORDION TABS
   ========================================================= */
.expand-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(252, 76, 2, 0.02);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  border-top: 1px solid rgba(252, 76, 2, 0.12);
}

.expand-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -1px;
  white-space: nowrap;
  letter-spacing: 0.2px;
  font-family: inherit;
}

.expand-tab:hover {
  color: var(--text-muted);
}

.expand-tab--active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.expand-tab-panel {
  display: none;
}

.expand-tab-panel--active {
  display: block;
}

/* =========================================================
   TAB 1 — SEGMENT (reuses existing .seg-expand-content)
   ========================================================= */
/* Remove the border-top from seg-expand-content since tabs provide it */
.expand-tab-panel--active .seg-expand-content {
  border-top: none;
}

/* 3-column stats variant */
.seg-expand-stats--3col {
  grid-template-columns: 1fr 1fr 1fr;
}

/* =========================================================
   TAB 2 — EFFORTS & STATS
   ========================================================= */
.efforts-tab-grid {
  display: grid;
  grid-template-columns: 1fr 195px;
  gap: 20px;
  padding: 14px 24px;
  background: rgba(252, 76, 2, 0.03);
  border-bottom: 1px solid var(--border);
}

.efforts-mini-table {
  width: 100%;
  font-size: 11px;
  border-collapse: collapse;
}

.efforts-mini-table th {
  text-align: left;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  font-weight: 500;
  padding: 0 0 7px;
  border-bottom: 1px solid var(--border);
}

.efforts-mini-table th:last-child,
.efforts-mini-table td:last-child {
  text-align: right;
}

.efforts-mini-table td {
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 11px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.efforts-mini-table tbody tr:last-child td {
  border-bottom: none;
}

.efforts-away {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
  color: var(--green);
}

.efforts-aside-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 6px;
}

.efforts-legend-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1px;
}

.efforts-legend-sub {
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.efforts-pb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.efforts-pb-stat__label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 2px;
}

.efforts-pb-stat__value {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.2px;
}

/* =========================================================
   TAB 3 — SOCIAL
   ========================================================= */
.social-tab-body {
  padding: 14px 24px;
  background: rgba(252, 76, 2, 0.03);
  border-bottom: 1px solid var(--border);
}

.social-tab-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 8px;
}

.social-msgs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.social-msg-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s;
  background: var(--surface-2);
}

.social-msg-option.selected {
  border-color: rgba(252, 76, 2, 0.35);
}

.social-msg-option input[type="radio"] {
  accent-color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.social-msg-option span {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.social-share-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.social-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-muted);
  transition: color 0.15s, border-color 0.15s;
  text-decoration: none;
  font-family: inherit;
}

.social-share-btn:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.social-share-btn svg {
  display: block;
  flex-shrink: 0;
}
