@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/common/fonts/InterVariable.woff2") format("woff2");
}

:root {
  --yellow: #ffd60a;
  --yellow-strong: #ffcc00;
  --yellow-soft: #fff8ce;
  --yellow-ink: #765300;
  --ink: #101820;
  --body: #3c4854;
  --muted: #71808f;
  --line: #e7ebef;
  --surface: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f6f8fa;
  --header-bg: rgba(255, 255, 255, 0.88);
  --footer: #101820;
  --footer-muted: #9aa7b4;
  --green: #35a62e;
  --red: #dd3c45;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(16, 24, 32, 0.1);
  --shadow-yellow: 0 18px 44px rgba(255, 204, 0, 0.26);
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--body);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
strong {
  color: var(--ink);
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.1;
}

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

section {
  padding: 74px 0;
}

.site-header {
  backdrop-filter: blur(14px) saturate(160%);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  align-items: center;
  display: flex;
  height: 68px;
  justify-content: space-between;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
}

.vinco-logo img {
  display: block;
  height: 32px;
  width: auto;
}

.nav-links {
  align-items: center;
  display: none;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 550;
}

.nav-links a:hover {
  color: var(--yellow-ink);
}

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

.desktop-cta {
  display: none;
}

.menu-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  display: grid;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  background: var(--ink);
  border-radius: 3px;
  display: block;
  height: 2px;
  transition: transform 0.2s ease;
  width: 24px;
}

.nav-links.open {
  align-items: flex-start;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  left: 0;
  padding: 22px 20px;
  position: absolute;
  right: 0;
  top: 68px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  padding: 13px 21px;
  transition: box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

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

.btn:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible,
.nav-links a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(180deg, #ffe44b, var(--yellow-strong));
  box-shadow: 0 9px 24px rgba(255, 204, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: #101820;
}

.btn-primary:hover {
  box-shadow: 0 13px 30px rgba(255, 204, 0, 0.38);
}

.btn-ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--yellow-strong);
}

.btn-small {
  font-size: 13px;
  padding: 10px 17px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-dark {
  background: #101820;
  color: #fff;
  flex: 0 0 auto;
}

.hero {
  background:
    radial-gradient(rgba(16, 24, 32, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, var(--yellow-soft), var(--bg) 80%);
  background-size: 22px 22px, auto;
  overflow: hidden;
  padding: 68px 0 78px;
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, transparent, var(--bg));
  bottom: 0;
  content: "";
  height: 34%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
}

.hero-glow-one {
  background: var(--yellow);
  height: 220px;
  right: -90px;
  top: -90px;
  width: 220px;
}

.hero-glow-two {
  background: #fff2a4;
  height: 190px;
  left: -100px;
  top: 34%;
  width: 190px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.availability {
  align-items: center;
  background: var(--surface);
  border: 1px solid rgba(53, 166, 46, 0.2);
  border-radius: 999px;
  color: var(--body);
  display: inline-flex;
  font-size: 12px;
  font-weight: 650;
  gap: 9px;
  margin-bottom: 22px;
  padding: 6px 12px;
}

.availability-dot {
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(53, 166, 46, 0.14);
  height: 8px;
  position: relative;
  width: 8px;
}

.availability-dot::after {
  animation: availability-pulse 2.3s ease-out infinite;
  background: var(--green);
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
}

@keyframes availability-pulse {
  0%,
  36% {
    opacity: 0;
    transform: scale(1);
  }
  46% {
    opacity: 0.4;
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(3);
  }
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(38px, 11vw, 62px);
  max-width: 720px;
}

.highlight {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  z-index: 1;
}

.highlight::after {
  background: var(--yellow);
  bottom: 5px;
  content: "";
  height: 28%;
  left: -3px;
  position: absolute;
  transform: rotate(-1deg);
  width: calc(100% + 6px);
  z-index: -1;
}

.hero-lead {
  color: var(--body);
  font-size: 18px;
  margin: 24px 0 28px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  list-style: none;
  margin-top: 24px;
}

.hero-proof li {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 7px;
}

.hero-proof span {
  align-items: center;
  background: rgba(53, 166, 46, 0.12);
  border-radius: 50%;
  color: var(--green);
  display: inline-flex;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.build-card {
  --parallax-y: 0px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-bar {
  align-items: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 6px;
  padding: 12px 14px;
}

.window-bar > span {
  background: #d6dce1;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.window-bar > span:first-child {
  background: #ff6b68;
}

.window-bar > span:nth-child(2) {
  background: #ffc941;
}

.window-bar > span:nth-child(3) {
  background: #4bc653;
}

.window-bar small {
  color: var(--muted);
  font-size: 10px;
  margin-left: auto;
}

.result-stage {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 214, 10, 0.4), transparent 34%),
    var(--bg-soft);
  min-height: 325px;
  overflow: hidden;
  padding: 20px 22px 27px;
  position: relative;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.02);
  will-change: transform;
}

.preview-label {
  color: var(--yellow-ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.result-nav {
  align-items: center;
  display: flex;
  gap: 7px;
  margin-bottom: 44px;
}

.result-nav > span {
  background: #cdd4da;
  border-radius: 999px;
  height: 5px;
  width: 24px;
}

.result-nav .result-logo {
  background: var(--ink);
  height: 11px;
  margin-right: auto;
  width: 49px;
}

.result-copy {
  max-width: 66%;
}

.result-heading {
  color: var(--ink);
  font-size: clamp(19px, 5vw, 29px);
  font-weight: 820;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 10px 0 14px;
}

.preview-line {
  background: #d9dee3;
  border-radius: 4px;
  height: 6px;
  margin-top: 7px;
  width: 55%;
}

.preview-line-long {
  width: 88%;
}

.result-buttons {
  display: flex;
  gap: 7px;
  margin-top: 17px;
}

.result-buttons span {
  background: var(--yellow);
  border-radius: 999px;
  height: 24px;
  width: 80px;
}

.result-buttons span:last-child {
  background: transparent;
  border: 1px solid #cbd2d8;
  width: 62px;
}

.result-cards {
  display: flex;
  gap: 7px;
  margin-top: 34px;
}

.result-cards span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 8px 16px rgba(16, 24, 32, 0.05);
  height: 43px;
  width: 27%;
}

.phone-preview {
  background: var(--surface);
  border: 4px solid var(--ink);
  border-radius: 20px;
  bottom: -20px;
  box-shadow: 0 18px 35px rgba(16, 24, 32, 0.22);
  height: 224px;
  padding: 27px 13px 13px;
  position: absolute;
  right: 19px;
  transform: rotate(4deg);
  width: 112px;
}

.phone-speaker {
  background: var(--ink);
  border-radius: 999px;
  height: 4px;
  left: 50%;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: 26px;
}

.phone-accent {
  background: var(--yellow);
  border-radius: 50%;
  height: 26px;
  margin: 0 auto 13px;
  width: 26px;
}

.phone-title,
.phone-line {
  background: var(--ink);
  border-radius: 3px;
  height: 7px;
  margin: 0 auto 7px;
  width: 76%;
}

.phone-line {
  background: #d7dde2;
  height: 4px;
  width: 82%;
}

.phone-line.short {
  width: 58%;
}

.phone-button {
  background: var(--yellow);
  border-radius: 999px;
  height: 20px;
  margin: 15px auto 0;
  width: 68px;
}

.result-benefits {
  background: var(--surface);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  padding: 14px 16px;
}

.result-benefits span {
  align-items: center;
  color: var(--body);
  display: flex;
  font-size: 9px;
  font-weight: 650;
  gap: 5px;
}

.result-benefits i {
  color: var(--green);
  font-style: normal;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 23px 0;
}

.trust-grid {
  display: grid;
  gap: 20px 12px;
  grid-template-columns: repeat(2, 1fr);
}

.trust-grid div {
  align-items: baseline;
  display: flex;
  gap: 8px;
}

.trust-grid strong {
  font-size: 25px;
  letter-spacing: -0.06em;
}

.trust-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.section-head {
  margin: 0 auto 43px;
  max-width: 720px;
  text-align: center;
}

.eyebrow {
  color: var(--yellow-ink);
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 13px;
}

.section-head h2,
.lean-copy h2,
.scores-copy h2,
.pricing-copy h2,
.faq-intro h2 {
  font-size: clamp(29px, 8vw, 43px);
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
  margin-top: 16px;
}

.feature-grid {
  display: grid;
  gap: 15px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: var(--yellow-strong);
  box-shadow: var(--shadow-yellow);
  transform: translateY(-3px);
}

.feature-icon {
  align-items: center;
  background: var(--yellow-soft);
  border: 1px solid rgba(255, 204, 0, 0.25);
  border-radius: 12px;
  color: var(--yellow-ink);
  display: flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 17px;
  width: 44px;
}

.feature-icon svg {
  fill: none;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 21px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

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

.lean-grid,
.scores-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 45px;
}

.lean-copy > p,
.scores-copy > p,
.pricing-copy > p,
.faq-intro > p {
  color: var(--muted);
  margin-top: 18px;
}

.quote {
  border-left: 4px solid var(--yellow);
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
  margin-top: 27px;
  padding: 4px 0 4px 19px;
  position: relative;
}

.quote > span {
  color: var(--yellow-strong);
  font-size: 38px;
  left: 15px;
  opacity: 0.45;
  position: absolute;
  top: -17px;
}

.comparison {
  display: grid;
  gap: 13px;
}

.compare-column {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 27px;
}

.compare-column h3 {
  font-size: 23px;
  margin-bottom: 24px;
}

.compare-column ul {
  display: grid;
  gap: 18px;
  list-style: none;
}

.compare-column li {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 560;
  gap: 12px;
}

.compare-column i {
  align-items: center;
  border-radius: 50%;
  display: flex;
  flex: 0 0 28px;
  font-style: normal;
  height: 28px;
  justify-content: center;
}

.muted-column {
  opacity: 0.78;
}

.muted-column i {
  background: rgba(221, 60, 69, 0.1);
  color: var(--red);
}

.winner-column {
  border: 2px solid var(--yellow-strong);
  box-shadow: var(--shadow-yellow);
  position: relative;
}

.winner-column i {
  background: rgba(53, 166, 46, 0.11);
  color: var(--green);
}

.winner-badge {
  background: var(--yellow);
  border-radius: 999px;
  color: #101820;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  padding: 5px 10px;
  position: absolute;
  right: 17px;
  top: -13px;
}

.scores-copy strong {
  box-shadow: inset 0 -0.4em var(--yellow);
}

.scores-copy small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 16px;
}

.score-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px 12px;
  grid-template-columns: repeat(2, 1fr);
  padding: 28px 17px;
}

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

.score-ring {
  align-items: center;
  background: conic-gradient(var(--green) 0deg, var(--green) 350deg, var(--line) 350deg);
  border-radius: 50%;
  display: flex;
  height: 72px;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
  width: 72px;
}

.score-ring::before {
  background: var(--surface);
  border-radius: 50%;
  content: "";
  inset: 6px;
  position: absolute;
}

.score-ring span {
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
  position: relative;
}

.score-item > strong {
  font-size: 11px;
}

.score-item > small {
  color: var(--muted);
  font-size: 9px;
}

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

.timeline {
  display: grid;
  gap: 28px;
  position: relative;
}

.timeline-line {
  background: var(--line);
  bottom: 0;
  left: 25px;
  position: absolute;
  top: 0;
  width: 3px;
}

.timeline-line span {
  background: var(--yellow);
  display: block;
  height: 0;
  transition: height 1.4s ease;
  width: 100%;
}

.timeline.active .timeline-line span {
  height: 100%;
}

.day {
  min-height: 100px;
  padding-left: 75px;
  position: relative;
}

.day-number {
  align-items: center;
  background: var(--surface);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 17px;
  font-weight: 850;
  height: 52px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 52px;
  z-index: 2;
}

.day > span {
  color: var(--yellow-ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.day h3 {
  font-size: 20px;
  margin: 5px 0 7px;
}

.day p {
  color: var(--muted);
  font-size: 14px;
}

.pricing-section {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.pricing-section::before {
  background: var(--yellow-soft);
  border-radius: 50%;
  content: "";
  height: 340px;
  position: absolute;
  right: -170px;
  top: 25%;
  width: 340px;
  z-index: -1;
}

.pricing-section .pricing-grid {
  position: relative;
  z-index: 1;
}

.price-notes {
  display: grid;
  gap: 11px;
  list-style: none;
  margin-top: 26px;
}

.price-notes li {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-weight: 560;
  gap: 11px;
}

.price-notes span {
  color: var(--green);
  font-weight: 800;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.price-card::before {
  background: var(--yellow);
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.price-card-top {
  text-align: center;
}

.price-card-top > span {
  color: var(--yellow-ink);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.price {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  line-height: 1;
  margin-top: 10px;
}

.price strong {
  font-size: 70px;
  letter-spacing: -0.08em;
}

.price sup {
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  margin: 6px 0 0 7px;
}

.price-card-top p {
  color: var(--muted);
  font-size: 12px;
}

.monthly {
  align-items: center;
  background: var(--bg-soft);
  border-radius: 13px;
  display: flex;
  gap: 16px;
  margin: 24px 0 13px;
  padding: 15px;
}

.monthly > div {
  border-right: 1px solid var(--line);
  flex: 0 0 85px;
  line-height: 1.25;
}

.monthly strong,
.monthly span {
  display: block;
}

.monthly strong {
  font-size: 19px;
}

.monthly span {
  color: var(--muted);
  font-size: 12px;
}

.monthly-services {
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.year-total {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 19px;
  text-align: center;
}

.year-total strong {
  color: var(--body);
}

.domain-note {
  color: var(--muted);
  display: block;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 16px;
  text-align: center;
}

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

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
  padding: 18px 47px 18px 18px;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  color: var(--yellow-ink);
  content: "+";
  font-size: 23px;
  font-weight: 400;
  position: absolute;
  right: 19px;
  top: 12px;
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  color: var(--muted);
  font-size: 13px;
  padding: 0 18px 19px;
}

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

.contact-card {
  align-items: center;
  background:
    radial-gradient(circle at 95% 0%, rgba(255, 255, 255, 0.5), transparent 33%),
    linear-gradient(135deg, var(--yellow), #ffdf38);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-yellow);
  display: flex;
  flex-direction: column;
  gap: 26px;
  overflow: hidden;
  padding: 35px 25px;
  position: relative;
}

.contact-card::after {
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 50%;
  content: "";
  height: 190px;
  position: absolute;
  right: -95px;
  top: -95px;
  width: 190px;
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact-copy .eyebrow {
  color: #5d4800;
}

.contact-copy h2 {
  color: #101820;
  font-size: clamp(27px, 8vw, 40px);
}

.contact-copy p {
  color: #3a3b31;
  margin-top: 12px;
}

.contact-card .btn {
  position: relative;
  width: 100%;
  z-index: 2;
}

footer {
  background: var(--footer);
  color: var(--footer-muted);
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer-company > p {
  color: var(--footer-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-vinco-logo {
  background: #fff;
  border-radius: 10px;
  display: inline-flex;
  padding: 9px 12px;
}

.footer-vinco-logo img {
  display: block;
  height: 31px;
  width: auto;
}

.footer-company > small {
  display: block;
  font-size: 12px;
  margin-top: 10px;
}

.footer-grid h3 {
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer-grid a,
.footer-grid address {
  font-size: 13px;
}

.footer-grid address {
  font-style: normal;
  line-height: 1.75;
}

.footer-grid address strong {
  color: #fff;
  display: block;
}

.footer-bottom {
  border-top: 1px solid #29343e;
  display: flex;
  flex-direction: column;
  font-size: 11px;
  gap: 7px;
  margin-top: 40px;
  padding-top: 21px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (min-width: 560px) {
  .container {
    padding: 0 28px;
  }

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

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

  .contact-card {
    padding: 44px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .footer-grid address {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 780px) {
  section {
    padding: 92px 0;
  }

  .nav {
    height: 72px;
  }

  .nav-links {
    display: flex;
  }

  .desktop-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 92px 0;
  }

  .hero-grid {
    align-items: center;
    grid-template-columns: 1.08fr 0.92fr;
  }

  .hero h1 {
    font-size: clamp(48px, 6.1vw, 66px);
  }

  .build-card {
    transform: rotate(1.3deg);
  }

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

  .trust-grid div {
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lean-grid,
  .scores-grid,
  .pricing-grid,
  .faq-grid {
    align-items: center;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
  }

  .score-panel {
    padding: 34px 24px;
  }

  .timeline {
    gap: 26px;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 5px;
  }

  .timeline-line {
    bottom: auto;
    height: 3px;
    left: 8%;
    right: 8%;
    top: 30px;
    width: auto;
  }

  .timeline-line span {
    height: 100%;
    transition: width 1.4s ease;
    width: 0;
  }

  .timeline.active .timeline-line span {
    height: 100%;
    width: 100%;
  }

  .day {
    padding: 76px 24px 0;
    text-align: center;
  }

  .day-number {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-card {
    flex-direction: row;
    justify-content: space-between;
    padding: 50px 56px;
  }

  .contact-copy {
    max-width: 640px;
  }

  .contact-card .btn {
    width: auto;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.55fr 0.65fr 1fr;
  }

  .footer-grid address {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
