/* ===== Career Branding Co — design system ===== */

:root {
  --bg: #0a0a0a;
  --bg-raised: #131313;
  --bg-card: #161616;
  --border: #262626;
  --accent: #5b8ba8;
  --accent-bright: #7aa8c2;
  --accent-dim: #3d6478;
  --text: #f5f5f3;
  --text-secondary: #9a9a94;
  --text-muted: #82827c;
  --font-head: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

/* ===== Text selection ===== */
/* Selling copy isn't meant to be lifted wholesale — but customers still need
   to copy their own form input and anything we explicitly want them to grab
   (email addresses, confirmation references). */

html {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

input,
textarea,
select,
.selectable,
.form-status,
a[href^="mailto:"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

/* ===== Accessibility ===== */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--accent);
  color: #08131a;
  padding: 12px 20px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  z-index: 1000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

/* ===== Motion ===== */
/* Hidden starting states only — the actual animation (easing, staggering,
   timing) is driven by anime.js in main.js so it can use richer easing
   than CSS transitions allow. */

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.hero .wrap > * {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .hero .wrap > * {
    opacity: 1;
    transform: none;
  }
  .marquee-track {
    animation: none !important;
    transform: none !important;
    flex-wrap: wrap;
    width: auto;
  }
  .marquee-track [aria-hidden="true"] {
    display: none;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.01em;
  word-spacing: 0.14em;
  line-height: 1.05;
}

p {
  color: var(--text-secondary);
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== Header / Nav ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--accent-bright);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(.16,.8,.24,1), border-color 0.3s ease;
}

.logo:hover .logo-mark {
  transform: rotate(-6deg) scale(1.06);
  border-color: var(--accent-bright);
}

.logo-word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-word span {
  display: block;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.main-nav a:not(.nav-cta) {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--accent-bright);
  transition: width 0.25s cubic-bezier(.16,.8,.24,1);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta).active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--text) !important;
  background: transparent;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #08131a;
}

.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.97);
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
}

.btn-block {
  width: 100%;
}

/* ===== Hero ===== */

.hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: clamp(40px, 6vw, 92px);
  margin: 18px auto 24px;
  text-align: center;
}

.hero .subtext {
  font-family: var(--font-head);
  color: var(--accent-bright);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.hero .lede {
  font-size: 19px;
  max-width: 46ch;
  margin: 0 auto 40px;
  color: var(--text-secondary);
  text-align: center;
}

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

/* ===== Sections ===== */

section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

.section-head {
  max-width: 60ch;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h1,
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-top: 14px;
}

/* ===== About ===== */

.about-body {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
}

.about-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.about-body .highlight {
  color: inherit;
  font-weight: 600;
}

/* ===== Positioning / problem-approach grid ===== */

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.split-grid h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text);
  text-align: center;
}

.split-grid .card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  transition: transform 0.35s cubic-bezier(.16,.8,.24,1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.split-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -28px rgba(0,0,0,0.65);
}

.split-grid .card + .card {
  border-color: var(--accent-dim);
}

.split-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-grid li {
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
}

.split-grid li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ===== Proof ===== */

.stat-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(91,139,168,0.08), var(--bg-card) 65%);
  transition: transform 0.35s cubic-bezier(.16,.8,.24,1), border-color 0.35s ease;
}

.stat-hero:hover {
  transform: translateY(-6px);
  border-color: var(--accent-dim);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 88px;
  background: var(--border);
  flex-shrink: 0;
}

.stat-hero-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  color: var(--accent-bright);
}

.stat-hero-num span {
  color: var(--accent);
}

.stat-hero-num .unit {
  display: inline-block;
  font-size: 0.36em;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-left: 4px;
  vertical-align: 0.5em;
}

.stat-hero-label {
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

/* ===== Reviews & recommendations ===== */

.marquee {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}

/* Edge fade using plain gradients instead of mask-image — some mobile
   browsers render mask-image + animated transforms as a solid black
   box, so this avoids that failure mode entirely. */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation-name: marquee-rtl;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: running;
  will-change: transform;
}

.marquee-track.reviews {
  animation-duration: 65s;
}

.marquee-track.recommendations {
  animation-duration: 48s;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-rtl {
  from { transform: translateX(0%); }
  to { transform: translateX(-50%); }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 0 0 340px;
  transition: transform 0.35s cubic-bezier(.16,.8,.24,1), border-color 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-dim);
}

.stars {
  position: relative;
  display: inline-block;
  align-self: flex-start;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.stars-bg {
  color: var(--border);
}

.stars-fg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: var(--accent-bright);
  white-space: nowrap;
}

.review-quote {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 20px;
}

.review-author {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.review-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.review-context {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.recommend-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 0 0 380px;
  transition: transform 0.35s cubic-bezier(.16,.8,.24,1), border-color 0.35s ease;
}

.recommend-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-dim);
}

.recommend-card .quote-mark {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 8px;
}

.recommend-quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  flex-grow: 1;
  margin-bottom: 20px;
}

/* ===== CTA band ===== */

.cta-band {
  background: var(--bg-raised);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(30px, 5vw, 52px);
  margin-bottom: 20px;
}

.cta-band p {
  max-width: 50ch;
  margin: 0 auto 36px;
  font-size: 17px;
}

/* ===== Pricing ===== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.16,.8,.24,1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px -30px rgba(0,0,0,0.7);
  border-color: var(--accent-dim);
}

.price-card.bundle:hover {
  border-color: var(--accent);
}

.price-card .tier-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}

.price-card .tier-price {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--accent-bright);
  margin: 12px 0 4px;
  text-align: center;
}

.price-card .tier-price .range-unit {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
}

.price-card .tier-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-card li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.bundle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.price-card.bundle {
  border: 1.5px solid var(--accent);
  background: linear-gradient(160deg, rgba(91,139,168,0.12), var(--bg-card) 60%);
  position: relative;
}

.ribbon-clip {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 110px;
  overflow: hidden;
  border-top-right-radius: 10px;
  pointer-events: none;
}

.ribbon-clip .ribbon {
  position: absolute;
  top: 18px;
  right: -34px;
  background: var(--accent);
  color: #08131a;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 40px;
  transform: rotate(35deg);
}

.price-card.bundle .tier-price {
  font-size: 40px;
}

.price-card .save-note {
  font-size: 13px;
  color: var(--accent-bright);
  font-weight: 600;
  margin-bottom: 4px;
  text-align: center;
}

/* ===== Forms ===== */

.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 44px;
}

.form-card.wide {
  max-width: 720px;
  padding: 56px;
}

.form-section + .form-section {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.form-section-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 24px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.15s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
}

/* Stop the browser's autofill/paste heuristic from flashing fields white */
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus,
.field textarea:-webkit-autofill,
.field select:-webkit-autofill {
  -webkit-text-fill-color: var(--text) !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--bg) inset !important;
  box-shadow: 0 0 0px 1000px var(--bg) inset !important;
  caret-color: var(--text);
  transition: background-color 9999s ease-in-out 0s;
}

.field input:autofill,
.field textarea:autofill,
.field select:autofill {
  -webkit-text-fill-color: var(--text) !important;
  box-shadow: 0 0 0px 1000px var(--bg) inset !important;
  caret-color: var(--text);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input[type="file"] {
  padding: 10px;
  color: var(--text-secondary);
  cursor: pointer;
}

.field input[type="file"]::file-selector-button {
  background: var(--accent);
  color: #08131a;
  border: none;
  border-radius: 4px;
  padding: 9px 16px;
  margin-right: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

.form-status {
  margin-top: 18px;
  font-size: 14px;
  display: none;
}

.form-status.success {
  color: var(--accent-bright);
  display: block;
}

.form-status.error {
  color: #c46a6a;
  display: block;
}

/* ===== Checkout ===== */

.checkout-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.order-line {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.order-line:first-of-type {
  border-top: none;
}

.order-line .item-name {
  font-weight: 600;
  color: var(--text);
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--accent-dim);
}

.order-total .label {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--text-secondary);
}

.order-total .amount {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--accent-bright);
}

.zar-note {
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.price-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.price-option:hover {
  border-color: var(--accent-dim);
}

.price-option input {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

.price-option.selected {
  border-color: var(--accent);
  background: rgba(91,139,168,0.08);
}

.price-option .opt-label {
  flex-grow: 1;
  font-size: 14px;
  color: var(--text-secondary);
}

.price-option .opt-amount {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
}

.test-mode-banner {
  background: rgba(91,139,168,0.1);
  border: 1px solid var(--accent-dim);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--accent-bright);
  margin-bottom: 28px;
}

/* ===== Footer ===== */

.site-footer {
  padding: 48px 0;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
}

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

.footer-social {
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.footer-social:hover {
  color: var(--accent-bright);
}

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

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

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .split-grid,
  .pricing-grid,
  .bundle-row {
    grid-template-columns: 1fr;
  }

  .stat-hero {
    flex-direction: column;
    padding: 48px 32px;
    gap: 36px;
  }

  .stat-divider {
    width: 88px;
    height: 1px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .hero {
    padding: 90px 0 70px;
  }

  .marquee-track.reviews {
    animation-duration: 100s;
  }

  .marquee-track.recommendations {
    animation-duration: 75s;
  }
}
