:root {
  --bg: #f2f6fa;
  --surface: #ffffff;
  --surface-soft: #e8eef5;
  --surface-band: #dfe7ef;
  --ink: #0b1828;
  --ink-soft: #3f5062;
  --ink-faint: #6f7f90;
  --line: rgba(24, 39, 56, 0.14);
  --line-strong: rgba(24, 39, 56, 0.28);
  --blue: #0074d9;
  --blue-soft: #e4f3ff;
  --silver: #b9c3cf;
  --silver-soft: #eef2f6;
  --section-tone-a: #eef2f6;
  --section-tone-b: #e4ebf2;
  --green: #6f7f90;
  --amber: #9aa7b5;
  --dark: #071523;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 18px 44px rgba(7, 21, 35, 0.1);
  --shadow-lift: 0 24px 58px rgba(7, 21, 35, 0.16);
  --anchor-offset: 22px;
  --motion-slow: 1500ms;
  --motion-mid: 1500ms;
  --motion-fast: 1500ms;
  --font-body: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-display: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-mono: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --safe-top: env(safe-area-inset-top, 0px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(780px 360px at 22% 0%, rgba(0, 116, 217, 0.12), transparent 68%),
    linear-gradient(180deg, #fbfdff, var(--bg) 42%, #e5ebf2 100%);
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

a {
  color: inherit;
}

p,
ul,
ol,
h1,
h2,
h3 {
  margin-top: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.7rem 0.9rem;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 10px;
}

.shell {
  width: min(1344px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding-top: var(--safe-top);
  transform: translateZ(0);
}

.topbar {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 8px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-left: auto;
  margin-right: 0.7rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 0.52rem 0.7rem;
  border-radius: 10px;
  transition:
    background var(--motion-fast) ease,
    color var(--motion-fast) ease;
}

.site-nav a:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.12rem;
  border-radius: 11px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background var(--motion-fast) ease,
    border-color var(--motion-fast) ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.button-light {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.hero {
  padding: 6.5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.hero-examples {
  display: grid;
  gap: 0.85rem;
  width: 80%;
  justify-self: end;
}

.hero-example {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.kicker {
  margin-bottom: 0.72rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(3rem, 5.8vw, 5.15rem);
  max-width: 12ch;
  margin-bottom: 1.05rem;
}

.hero-copy h1 {
  margin-bottom: 1.45rem;
}

h2 {
  font-size: clamp(2.05rem, 3.7vw, 3.25rem);
  margin-bottom: 0.82rem;
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.68rem);
  margin-bottom: 0.55rem;
}

.intro {
  max-width: 58ch;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem 0 1rem;
}

.mail-slip,
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.timeline-step span {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.section {
  padding: 6.5rem 0;
  scroll-margin-top: var(--anchor-offset);
}

main > section {
  background: var(--section-tone-a);
}

main > section:nth-of-type(even) {
  background: var(--section-tone-b);
}

.about-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: 14vh;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
}

.about-copy h2 {
  margin-bottom: 1.25rem;
}

.about-copy .section-note,
.about-copy p:not(.kicker) {
  max-width: 66ch;
  color: var(--ink-soft);
}

.about-copy p:last-child {
  margin-bottom: 0;
  font-weight: 600;
}

.about-photo-role {
  margin: -0.35rem 0 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 600;
}

.about-photo {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.offer-section {
  border-top: 1px solid var(--line);
  scroll-margin-top: 10vh;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.offer-card {
  min-height: 100%;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.offer-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.offer-card p {
  margin-bottom: 0.9rem;
  color: var(--ink-soft);
}

.offer-card p:last-child {
  margin-bottom: 0;
}

.offer-detail-card {
  margin-top: 0.9rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 238, 245, 0.88));
}

.offer-detail-label,
.offer-detail-value,
.offer-detail-copy {
  margin: 0;
}

.offer-detail-label {
  margin-bottom: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
}

.offer-detail-value {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
}

.offer-detail-copy {
  color: var(--ink-soft);
}

.section-contrast {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-lined {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 1.25rem;
}

.section-note {
  max-width: 66ch;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.mail-slip {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--motion-mid) ease,
    box-shadow var(--motion-mid) ease,
    border-color var(--motion-mid) ease;
}

.timeline {
  display: grid;
  gap: 0.3rem;
  max-width: 880px;
}

.how-it-works-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.78fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.timeline-step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  transition:
    transform var(--motion-mid) ease,
    border-color var(--motion-mid) ease;
}

.timeline-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
}

.timeline-step h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
}

.timeline-step p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.timeline-action {
  margin-top: 1.4rem;
}

.how-it-works-examples {
  display: grid;
  gap: 0.85rem;
  width: 80%;
  justify-self: end;
}

.how-it-works-example {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 980px;
  align-items: start;
}

.faq-column {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.faq-item {
  min-height: 90px;
  border-radius: var(--radius);
  padding: 0.92rem 1rem;
  transition:
    transform var(--motion-mid) ease,
    box-shadow var(--motion-mid) ease,
    border-color var(--motion-mid) ease;
}

.faq-item summary {
  display: flex;
  align-items: center;
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 1.8rem;
  min-height: 54px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.18;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--font-mono);
  color: var(--blue);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
}

.faq-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height 400ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 400ms ease;
}

.faq-content > * {
  overflow: hidden;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity var(--motion-slow) cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms),
    transform var(--motion-slow) cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms);
}

.js-enabled:not(.reveal-ready) [data-reveal] {
  transition: none;
}

.js-enabled [data-reveal="left"] {
  transform: translate3d(-60px, 0, 0);
}

.js-enabled [data-reveal="right"] {
  transform: translate3d(60px, 0, 0);
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .mail-slip:hover,
  .faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
    border-color: var(--line-strong);
  }

  .timeline-step:hover {
    transform: translateX(6px);
    border-color: var(--line-strong);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .site-nav a,
  .mail-slip,
  .timeline-step,
  .faq-item,
  .js-enabled [data-reveal] {
    transition: none;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.site-footer {
  margin-top: 0;
  padding: 2.2rem 0 2.3rem;
  border-top: 1px solid var(--line);
  background: var(--dark);
  color: #dce5ee;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem 1rem;
}

.footer-grid p {
  margin-bottom: 0;
  max-width: 58ch;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-grid-meta {
  margin-top: 1.1rem;
  color: #9fb0c3;
  font-size: 0.96rem;
}

#faq {
  padding-top: 3.6rem;
  padding-bottom: 3.4rem;
}

#contact {
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
}

#contact .section-head {
  max-width: 760px;
}

#contact .mail-slip {
  max-width: 704px;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line-strong);
}

#contact iframe {
  display: block;
  min-height: 520px;
  background: #fff;
}

.page-legal {
  background:
    radial-gradient(720px 320px at 18% 0%, rgba(0, 116, 217, 0.11), transparent 70%),
    linear-gradient(180deg, #fbfdff, var(--bg) 48%, #e5ebf2 100%);
}

.legal-hero {
  padding-top: 4.2rem;
  padding-bottom: 3.4rem;
}

.page-intro {
  max-width: 650px;
  margin-right: auto;
  text-align: left;
}

.page-intro h1 {
  max-width: 13ch;
}

.page-intro .lead {
  max-width: 66ch;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
}

.legal-section {
  background:
    radial-gradient(560px 260px at 80% 0%, rgba(0, 116, 217, 0.08), transparent 72%),
    rgba(255, 255, 255, 0.36);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.legal-card {
  min-height: 100%;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.legal-card h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.28rem, 2.2vw, 1.72rem);
}

.legal-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.legal-card p + p {
  margin-top: 0.85rem;
}

.legal-card a {
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-muted {
  color: var(--ink-faint);
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .how-it-works-layout,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-examples {
    width: 100%;
    justify-self: start;
    max-width: 720px;
  }

  .how-it-works-examples {
    width: 100%;
    justify-self: start;
    max-width: 720px;
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  :root {
    --anchor-offset: calc(88px + var(--safe-top));
  }

  body {
    padding-top: calc(67px + var(--safe-top));
  }

  .shell {
    width: min(100% - 1.8rem, 1180px);
  }

  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
  }

  .topbar {
    min-height: auto;
    padding: 0.85rem 0;
    flex-wrap: nowrap;
    gap: 0.6rem;
  }

  .brand {
    font-size: 0.9rem;
    gap: 0.52rem;
    min-width: 0;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .site-nav {
    display: none;
  }

  .topbar > .button {
    margin-left: auto;
    flex: 0 1 auto;
    min-width: 0;
    min-height: 40px;
    padding: 0.66rem 0.68rem;
    font-size: clamp(0.68rem, 2.8vw, 0.8rem);
  }

  .hero {
    padding: 2.6rem 0 1.6rem;
  }

  h1 {
    font-size: clamp(2.4rem, 11.5vw, 3.45rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  #services,
  #contact {
    scroll-margin-top: calc(var(--anchor-offset) - 114px);
  }

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

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

  .timeline-step {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .section {
    padding: 3.1rem 0;
  }

  #contact iframe {
    height: 496px;
    min-height: 496px;
  }

  .legal-hero {
    padding-top: 3rem;
    padding-bottom: 2.6rem;
  }

  .faq-item summary {
    font-size: 1.08rem;
  }
}
