/* =========================================================
   Beacon — Apple-adjacent rebuild
   Light theme · Inter · generous space · one accent · restrained motion
   ========================================================= */

:root {
  /* Light base — like Apple's f5f5f7, not a generic SaaS dark mode */
  --bg:          #fbfbfd;
  --bg-alt:      #f5f5f7;
  --bg-dark:     #0a0a0a;
  --bg-dark-2:   #1d1d1f;

  --line:        #d2d2d7;
  --line-soft:   #e5e5ea;
  --line-dark:   #2a2a2c;

  --text:        #1d1d1f;
  --text-soft:   #424245;
  --text-muted:  #6e6e73;
  --text-dim:    #86868b;
  --text-light:  #f5f5f7;
  --text-light-soft: #a1a1a6;

  --accent:      #00d26a;     /* single accent — used for one word */
  --accent-hover:#00b85c;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;

  --container: 980px;
  --gutter: 1.5rem;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* -------- Base -------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47059;
  color: var(--text);
  background: var(--bg);
  font-feature-settings: 'kern' 1, 'liga' 1;
}

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

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -40px; left: 1rem;
  background: var(--text);
  color: var(--bg);
  padding: .5rem .9rem;
  border-radius: 6px;
  z-index: 100;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

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

/* -------- Typography scale (Apple-inspired) -------- */
.display {
  font-size: clamp(2.5rem, 1.4rem + 5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 1.5rem 0 1.75rem;
  color: var(--text);
}
.display-2 {
  font-size: clamp(2rem, 1.3rem + 3vw, 3.75rem);
  line-height: 1.07;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 1.25rem 0 2rem;
  color: var(--text);
}
.lede {
  font-size: clamp(1.25rem, 1rem + .6vw, 1.625rem);
  line-height: 1.4;
  color: var(--text-soft);
  max-width: 620px;
  font-weight: 400;
}
.lede-light {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text-light-soft);
  max-width: 460px;
  margin: 0 0 2rem;
}
.eyebrow {
  font-size: .8125rem;
  letter-spacing: .02em;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0 0 .25rem;
}
.eyebrow-light { color: var(--text-light-soft); }
.accent { color: var(--accent); }

h3 {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .5rem;
  color: var(--text);
}

/* -------- Nav -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 253, .82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}
.nav-brand {
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -.01em;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: .9375rem;
}
.nav-links a {
  color: var(--text-soft);
  font-weight: 400;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-cta {
  color: var(--accent);
  font-weight: 500;
}
.nav-links a.nav-cta:hover { color: var(--accent-hover); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--text);
  transition: transform .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(2.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-2.75px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: .5rem 1.5rem 1.25rem;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.mobile-nav a {
  padding: .9rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.is-open { display: flex; }

/* -------- Hero -------- */
.hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: left;
}

.cta-row {
  display: flex;
  gap: 1.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.link-arrow {
  color: var(--accent);
  font-size: 1.125rem;
  font-weight: 500;
  transition: color .2s var(--ease);
}
.link-arrow:hover { color: var(--accent-hover); }
.link-arrow span {
  display: inline-block;
  margin-left: .15em;
  transition: transform .2s var(--ease);
}
.link-arrow:hover span { transform: translateX(3px); }
.link-quiet { color: var(--text-soft); }
.link-quiet:hover { color: var(--text); }

/* -------- Blocks -------- */
.block {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line-soft);
}
.block-alt {
  background: var(--bg-alt);
}

/* -------- Offer list (services) -------- */
.offer-list {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
}
.offer {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.offer:last-child { border-bottom: 1px solid var(--line); }
.offer-num {
  font-size: 1.0625rem;
  color: var(--text-dim);
  letter-spacing: .02em;
  font-weight: 500;
  padding-top: .35rem;
}
.offer h3 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.offer p {
  color: var(--text-soft);
  font-size: 1.0625rem;
  max-width: 640px;
  margin: 0;
  line-height: 1.5;
}

/* -------- Steps -------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.steps li {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.step-num {
  font-size: .9375rem;
  color: var(--text-dim);
  letter-spacing: .02em;
  font-weight: 500;
}
.steps h3 { margin: 0; }
.steps p {
  color: var(--text-soft);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}
.step-time {
  margin-top: auto;
  font-size: .875rem;
  color: var(--text-dim);
  padding-top: .75rem;
}

/* -------- Image moment (the one editorial frame) -------- */
.image-moment {
  margin: clamp(4rem, 8vw, 7rem) 0 0;
  padding: 0;
}
.image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at 30% 30%, #e8e8ed 0%, #d8d8de 60%, #c8c8ce 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .875rem;
  letter-spacing: .04em;
  position: relative;
  overflow: hidden;
}
.image-placeholder::before {
  /* subtle inner frame to give it editorial weight */
  content: '';
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 2px;
  pointer-events: none;
}
.image-placeholder span {
  background: rgba(255, 255, 255, .7);
  padding: .5rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.image-moment figcaption {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 720px;
}
.caption-label {
  display: inline-block;
  font-size: .8125rem;
  color: var(--text-dim);
  margin-right: .5rem;
  letter-spacing: .02em;
}

/* -------- Start section (dark inversion) -------- */
.block-dark {
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: none;
}
.start-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.start-copy .display-2 { color: var(--text-light); margin-top: 1rem; margin-bottom: 1.5rem; }
.start-copy a {
  color: var(--accent);
  border-bottom: 1px solid rgba(0, 210, 106, .3);
}
.start-copy a:hover { border-bottom-color: var(--accent); }

/* -------- Form -------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: .5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form label {
  font-size: .8125rem;
  color: var(--text-light-soft);
  font-weight: 500;
  letter-spacing: .02em;
}
.optional { color: var(--text-dim); font-weight: 400; }

.form input,
.form select,
.form textarea {
  width: 100%;
  background: var(--bg-dark-2);
  border: 1px solid var(--line-dark);
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  padding: .8rem .9rem;
  border-radius: 8px;
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #232325;
}
.form textarea { resize: vertical; min-height: 110px; }
.form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-light-soft) 50%),
                    linear-gradient(135deg, var(--text-light-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.btn-light {
  background: var(--accent);
  color: #001a0f;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: .9rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s var(--ease), transform .15s var(--ease);
  margin-top: .5rem;
}
.btn-light:hover { background: var(--accent-hover); }
.btn-light:active { transform: translateY(1px); }

.form-status {
  margin: 0;
  font-size: .9375rem;
  color: var(--text-light-soft);
  min-height: 1.2em;
}
.form-status.success { color: var(--accent); }
.form-status.error { color: #ff6b6b; }

/* -------- Footer -------- */
.footer {
  background: var(--bg-alt);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line-soft);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-mark {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: .5rem;
}
.footer-tag {
  color: var(--text-muted);
  font-size: .9375rem;
  margin: 0;
  max-width: 320px;
}
.footer-meta {
  text-align: right;
  font-size: .9375rem;
  color: var(--text-muted);
}
.footer-meta p { margin: 0 0 .5rem; }
.footer-meta a {
  color: var(--text-soft);
  border-bottom: 1px solid transparent;
  transition: border-color .15s var(--ease), color .15s var(--ease);
}
.footer-meta a:hover { color: var(--text); border-bottom-color: var(--text-soft); }
.footer-fine { font-size: .8125rem; color: var(--text-dim); margin-top: 1.25rem !important; }

/* -------- Reveal (only on hero h1 + section heads, not every paragraph) -------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

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

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .start-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 640px) {
  :root { --gutter: 1.25rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .offer { grid-template-columns: 60px 1fr; gap: 1rem; padding: 1.5rem 0; }
  .offer-num { font-size: .9375rem; }
  .offer h3 { font-size: 1.25rem; }
  .offer p { font-size: 1rem; }

  .steps { grid-template-columns: 1fr; gap: 1.5rem; }

  .field-row { grid-template-columns: 1fr; gap: 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-meta { text-align: left; }

  .cta-row { gap: 1rem; }
}

@media (max-width: 380px) {
  :root { --gutter: 1rem; }
  .display { font-size: 2.25rem; }
}
