:root {
  --bg: #faf7ef;
  --paper: #fffdf8;
  --paper-deep: #f0e8db;
  --ink: #171513;
  --ink-soft: #302b26;
  --muted: #6f675d;
  --line: rgba(23, 21, 19, 0.14);
  --line-strong: rgba(23, 21, 19, 0.24);
  --charcoal: #151820;
  --charcoal-soft: #222734;
  --coral: #d9654f;
  --sage: #75866b;
  --blue: #446d8d;
  --gold: #b98a33;
  --mint: #dfead6;
  --shadow: 0 24px 70px rgba(34, 26, 16, 0.13);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(217, 101, 79, 0.08) 0%, transparent 32%),
    linear-gradient(22deg, transparent 56%, rgba(68, 109, 141, 0.1) 88%),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(23, 21, 19, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(23, 21, 19, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 70%);
}

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

button,
input,
textarea {
  font: inherit;
}

button,
input,
textarea,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

button,
a,
summary,
input,
textarea {
  outline-color: var(--coral);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(23, 21, 19, 0.08);
  background: #f4ede5;
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: clamp(142px, 18vw, 188px);
  height: auto;
}

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 14px;
  left: 14px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a:not(.button) {
  min-height: 44px;
  padding: 12px 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
}

.site-nav a:not(.button):hover {
  background: var(--paper-deep);
  color: var(--ink);
}

.language-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 760;
  padding: 0 12px;
}

.language-button:hover {
  background: var(--paper);
}

.menu-button {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.section {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
  padding-block: 76px;
}

.hero {
  display: grid;
  width: 100%;
  max-width: none;
  align-items: start;
  padding-inline: 18px;
  padding-top: 52px;
  padding-bottom: 28px;
  background: #f2eae0;
}

.hero-image-wrap {
  display: flex;
  width: min(100%, var(--container));
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 30px;
}

.hero-lineup {
  width: min(100%, 980px);
  height: auto;
}

.hero-copy {
  width: min(100%, var(--container));
  margin-inline: auto;
  max-width: var(--container);
}

.eyebrow,
.card-tag,
.plan-badge {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-top: 16px;
  max-width: 790px;
  font-size: 2.85rem;
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--charcoal);
  color: var(--paper);
  box-shadow: 0 12px 28px rgba(21, 24, 32, 0.16);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(21, 24, 32, 0.22);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 253, 248, 0.64);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(23, 21, 19, 0.38);
  background: var(--paper);
}

.button-dark {
  background: var(--paper);
  color: var(--charcoal);
}

.button-arrow {
  font-weight: 900;
}

.section-header {
  max-width: 780px;
  margin-bottom: 32px;
}

.section-header-center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2 {
  margin-top: 10px;
  font-size: 2.15rem;
  line-height: 1.04;
  font-weight: 930;
  letter-spacing: 0;
}

.section-header p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.example-grid,
.pricing-grid,
.steps-grid,
.roadmap,
.pain-grid,
.trust-grid {
  display: grid;
  gap: 16px;
}

.example-grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(178px, 66vw);
  width: min(100%, var(--container));
  margin-inline: auto;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 2px 14px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.example-card,
.pricing-card,
.step-card,
.roadmap-step,
.pain-card,
.trust-card,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 16px 46px rgba(34, 26, 16, 0.08);
}

.example-card {
  overflow: hidden;
  scroll-snap-align: start;
}

.example-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.example-card-body {
  padding: 16px;
}

.example-card h3,
.pricing-card h3,
.step-card h3,
.pain-card h3,
.trust-card h3 {
  font-size: 1.22rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.example-card h3 {
  margin-top: 8px;
  font-size: 1.05rem;
}

.example-card p:not(.card-tag),
.step-card p,
.plan-best-for,
.pricing-note {
  color: var(--muted);
  line-height: 1.58;
}

.example-card p:not(.card-tag) {
  margin-top: 10px;
  font-size: 0.92rem;
}

.problem-band,
.about-band,
.comparison-band,
.contact-section,
.latest-project {
  width: 100%;
  max-width: none;
  padding-inline: 22px;
}

.problem-band {
  background: var(--charcoal);
  color: var(--paper);
}

.problem-layout,
.about-layout,
.comparison-intro,
.contact-layout {
  display: grid;
  gap: 28px;
  width: 100%;
  margin-inline: auto;
}

.problem-band .section-header,
.about-band .section-header,
.comparison-band .section-header,
.contact-section .section-header {
  margin-bottom: 0;
}

.problem-band .section-header,
.comparison-band .section-header {
  max-width: none;
}

.problem-band .section-header h2,
.comparison-band .section-header h2 {
  color: var(--paper);
}

.problem-band .section-header h2,
.comparison-band .section-header h2 {
  max-width: 1060px;
  font-size: 3.35rem;
}

.problem-copy p {
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.04rem;
  line-height: 1.7;
}

.pain-grid {
  width: min(100%, var(--container));
  margin: 34px auto 0;
}

.pain-card {
  min-height: 148px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.07);
  border-color: rgba(255, 253, 248, 0.14);
  color: var(--paper);
}

.pain-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: #e0ad62;
  font-weight: 900;
}

.transition-line {
  width: min(100%, var(--container));
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.45;
}

.roadmap {
  position: relative;
  gap: 26px;
  padding-block: 6px;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 30px;
  width: 10px;
  border-radius: 999px;
  background: var(--charcoal);
}

.roadmap-step {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  z-index: 1;
}

.step-number {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--paper);
  font-size: 1.22rem;
  font-weight: 900;
  box-shadow: 0 0 0 8px var(--bg);
  z-index: 2;
}

.roadmap-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.roadmap-title h3 {
  font-size: 1.22rem;
  line-height: 1.18;
}

.roadmap-title span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
}

.roadmap-content p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.58;
}

.comparison-band {
  background: var(--charcoal);
  color: var(--paper);
}

.comparison-intro {
  align-items: start;
}

.comparison-band .section-header p {
  color: rgba(255, 253, 248, 0.72);
}

.comparison-table {
  width: min(100%, var(--container));
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.06);
}

.comparison-row {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row > div {
  padding: 16px;
  border-top: 1px solid rgba(255, 253, 248, 0.1);
  color: rgba(255, 253, 248, 0.76);
  line-height: 1.45;
}

.comparison-row > div:first-child {
  border-top: 0;
  color: var(--paper);
  font-weight: 850;
}

.comparison-row:not(.comparison-head) > div[data-label]::before {
  content: attr(data-label);
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.78rem;
  font-weight: 850;
}

.comparison-head {
  display: none;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 22px;
}

.pricing-card.is-featured {
  border-color: rgba(217, 101, 79, 0.55);
  background:
    linear-gradient(145deg, rgba(217, 101, 79, 0.12), rgba(255, 253, 248, 0.95) 48%),
    var(--paper);
}

.pricing-top {
  min-height: 96px;
}

.plan-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(217, 101, 79, 0.13);
  color: var(--coral);
}

.plan-videos {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 760;
}

.plan-price {
  color: var(--ink);
  font-size: 1.75rem;
  font-weight: 930;
  line-height: 1;
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-note {
  max-width: 790px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 0.94rem;
}

.about-band {
  background:
    linear-gradient(135deg, rgba(217, 101, 79, 0.07), transparent 35%),
    #060606;
  color: var(--paper);
}

.about-layout {
  align-items: center;
}

.about-copy {
  max-width: 1120px;
}

.about-copy h2 {
  max-width: 1120px;
  margin-top: 18px;
  color: var(--paper);
  font-size: 3.2rem;
  line-height: 0.96;
  font-weight: 950;
}

.about-copy p:not(.eyebrow) {
  max-width: 890px;
  margin-top: 26px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 1.15rem;
  line-height: 1.72;
}

.founder-card {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 430px;
  justify-self: start;
  padding: 24px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(68, 109, 141, 0.18), transparent 42%),
    rgba(255, 253, 248, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.founder-card img {
  width: 132px;
  height: 132px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 52% 46%;
}

.founder-card p {
  margin-top: 12px;
  color: #d8ad6d;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-card h3 {
  color: var(--paper);
  font-size: 2.05rem;
  line-height: 1.06;
}

.founder-card span,
.founder-card strong {
  color: rgba(255, 253, 248, 0.7);
  font-size: 1rem;
  line-height: 1.45;
}

.contact-section {
  background: var(--bg);
}

.contact-layout {
  align-items: start;
}

.latest-project {
  background:
    linear-gradient(145deg, rgba(217, 101, 79, 0.09), transparent 38%),
    var(--charcoal);
  color: var(--paper);
}

.latest-project .section-header {
  width: min(100%, 900px);
}

.latest-project .section-header p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.72);
}

.client-video-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(168px, 64vw);
  width: min(100%, var(--container));
  margin: 36px auto 0;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 2px 14px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.client-video-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  scroll-snap-align: start;
}

.client-video-player {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 4;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  color: inherit;
  cursor: pointer;
  user-select: none;
  background:
    linear-gradient(150deg, rgba(68, 109, 141, 0.34), transparent 42%),
    linear-gradient(25deg, rgba(217, 101, 79, 0.3), rgba(255, 253, 248, 0.06)),
    #171b24;
}

.client-video-player:focus-visible {
  outline: 2px solid rgba(255, 253, 248, 0.78);
  outline-offset: 4px;
}

.client-video-player:hover .client-video-media {
  transform: scale(1.025);
}

.client-video-player::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 253, 248, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 248, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

.client-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  transition: transform 220ms ease;
}

.client-video-number {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 2;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  pointer-events: none;
}

.client-video-audio-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  min-width: 52px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  background: rgba(18, 22, 29, 0.74);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.client-video-audio-button:hover {
  background: rgba(255, 253, 248, 0.94);
  color: var(--charcoal);
  transform: translateY(-1px);
}

.client-video-audio-button:focus-visible {
  outline: 2px solid rgba(255, 253, 248, 0.88);
  outline-offset: 3px;
}

.client-video-play {
  position: relative;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.client-video-play::before {
  content: "";
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--charcoal);
}

.client-video-card h3 {
  color: var(--paper);
  font-size: 0.92rem;
  line-height: 1.25;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  gap: 18px;
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.lead-form label > span,
.lead-form legend {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 820;
}

.lead-form legend {
  margin-bottom: 6px;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="url"],
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbf8f0;
  color: var(--ink);
  padding: 12px 13px;
}

.lead-form textarea {
  min-height: 128px;
  resize: vertical;
}

.choice-grid,
.interest-grid {
  display: grid;
  gap: 12px;
}

.interest-grid {
  gap: 18px;
  margin-top: 8px;
}

.choice {
  min-height: 46px;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbf8f0;
  cursor: pointer;
  font-weight: 400;
}

.choice span {
  font-weight: 400;
}

.choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--charcoal);
}

.price-choice {
  align-items: start;
  min-height: 68px;
  padding: 16px 15px;
}

.price-choice > span {
  display: grid;
  gap: 3px;
}

.price-choice strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 400;
}

.price-choice small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.price-list {
  display: grid;
  width: min(100%, 520px);
  margin: 2px auto 0;
  color: var(--ink);
  font-size: 0.95rem;
}

.price-list-header,
.price-list-row {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 21, 19, 0.1);
}

.price-list-header {
  padding-top: 0;
  border-bottom-color: rgba(23, 21, 19, 0.22);
  font-weight: 760;
}

.price-list strong {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

.price-list-header span:nth-child(2),
.price-list-row span:nth-child(2) {
  text-align: center;
}

.price-list-header span:last-child {
  text-align: right;
}

.submit-button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--paper);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(21, 24, 32, 0.18);
}

.form-status {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 14px 16px;
  border: 1px solid;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.form-status-success {
  border-color: rgba(117, 134, 107, 0.34);
  background: rgba(117, 134, 107, 0.12);
}

.form-status-error {
  border-color: rgba(217, 101, 79, 0.38);
  background: rgba(217, 101, 79, 0.12);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 850px;
  margin-inline: auto;
}

details {
  padding: 24px 26px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  list-style-position: inside;
  padding-left: 6px;
}

details p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.62;
}

.site-footer {
  display: grid;
  gap: 28px;
  padding: 40px 18px;
  border-top: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--paper);
}

.site-footer p {
  margin-top: 10px;
  color: rgba(255, 253, 248, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.site-footer a {
  color: rgba(255, 253, 248, 0.76);
}

.site-footer a:hover {
  color: var(--paper);
}

.footer-brand {
  color: var(--paper);
  font-size: 1.2rem;
}

.footer-email {
  font-weight: 850;
}

@media (prefers-reduced-motion: no-preference) {
  .example-card,
  .roadmap-step,
  .pricing-card,
  .pain-card,
  .trust-card,
  .client-video-card {
    animation: riseIn 520ms ease both;
  }

  .example-card:nth-child(2),
  .roadmap-step:nth-child(2),
  .pricing-card:nth-child(2),
  .pain-card:nth-child(2),
  .trust-card:nth-child(2),
  .client-video-card:nth-child(2) {
    animation-delay: 80ms;
  }

  .example-card:nth-child(3),
  .roadmap-step:nth-child(3),
  .pricing-card:nth-child(3),
  .pain-card:nth-child(3),
  .trust-card:nth-child(3),
  .client-video-card:nth-child(3) {
    animation-delay: 150ms;
  }

  @keyframes riseIn {
    from {
      opacity: 0;
      transform: translateY(14px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (min-width: 560px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .client-video-grid {
    grid-auto-columns: 210px;
  }

  .example-grid {
    grid-auto-columns: 220px;
  }
}

@media (min-width: 760px) {
  h1 {
    font-size: 4.7rem;
  }

  .section {
    width: min(100% - 64px, var(--container));
    padding-block: 96px;
  }

  .hero {
    width: 100%;
    max-width: none;
    padding-inline: 32px;
    padding-top: 72px;
    padding-bottom: 36px;
  }

  .problem-band,
  .about-band,
  .comparison-band,
  .contact-section,
  .latest-project {
    width: 100%;
    max-width: none;
    padding-inline: 42px;
  }

  .site-header {
    padding-inline: 32px;
  }

  .section-header h2 {
    font-size: 3.2rem;
  }

  .problem-band .section-header h2,
  .comparison-band .section-header h2 {
    font-size: 5rem;
  }

  .about-copy h2 {
    font-size: 5.4rem;
  }

  .pricing-grid,
  .steps-grid,
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .problem-layout,
  .about-layout,
  .comparison-intro,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    max-width: none;
  }

  .comparison-intro {
    align-items: end;
  }

  .comparison-intro .button {
    justify-self: end;
  }
}

@media (min-width: 980px) {
  .menu-button {
    display: none;
  }

  .site-header {
    padding-inline: 42px;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a:not(.button) {
    padding-inline: 12px;
  }

  .language-button {
    margin-left: 4px;
  }

  .nav-action {
    margin-left: 8px;
  }

  h1 {
    font-size: 5.8rem;
  }

  .hero-subtitle {
    font-size: 1.17rem;
  }

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

  .client-video-grid {
    grid-auto-columns: 220px;
    justify-content: center;
  }

  .example-grid {
    grid-auto-columns: 240px;
    justify-content: center;
  }

  .roadmap {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
  }

  .roadmap::before {
    top: 35px;
    right: 12.5%;
    bottom: auto;
    left: 12.5%;
    width: auto;
    height: 10px;
    background: var(--charcoal);
  }

  .roadmap-step {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    justify-items: center;
    gap: 24px;
    min-height: 0;
    padding: 0;
    text-align: center;
  }

  .roadmap-step:nth-child(even) {
    transform: none;
  }

  .roadmap-content {
    max-width: 250px;
  }

  .roadmap-title {
    justify-content: center;
  }

  .site-footer {
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding-inline: 42px;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 6.4rem;
  }

  .problem-band .section-header h2,
  .comparison-band .section-header h2 {
    font-size: 6rem;
  }

  .about-copy h2 {
    font-size: 6.6rem;
  }

}

@media (max-width: 420px) {
  h1 {
    font-size: 2.55rem;
  }

  .section-header h2 {
    font-size: 1.95rem;
  }

  .button {
    width: 100%;
  }
}
