:root {
  --coral: #ff6675;
  --coral-dark: #ea4f62;
  --purple: #7d5cff;
  --yellow: #ffd84d;
  --ink: #17151d;
  --muted: #777381;
  --line: #eeeef3;
  --paper: #ffffff;
  --soft: #faf9ff;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(23, 21, 29, 0.08);
  --radius: 8px;
  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

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

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(23, 21, 29, 0.06);
  backdrop-filter: blur(20px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--white);
}

.brand span {
  white-space: nowrap;
  font-size: 0.96rem;
}

.nav-links {
  display: none;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--coral);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(255, 102, 117, 0.26);
  font-weight: 850;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--coral-dark);
  box-shadow: 0 16px 34px rgba(244, 95, 106, 0.34);
}

.btn-small {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 0.82rem;
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--white);
  box-shadow: 0 12px 24px rgba(25, 24, 29, 0.08);
}

.full {
  width: 100%;
}

.section {
  padding: 86px 0;
}

.soft-bg {
  background: linear-gradient(180deg, #ffffff, #fbfbff);
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 72px;
  padding-bottom: 74px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 102, 117, 0.14), transparent 25%),
    radial-gradient(circle at 50% 8%, rgba(125, 92, 255, 0.12), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
}

.hero-grid,
.two-col,
.price-grid,
.faq-grid {
  display: grid;
  gap: 34px;
}

.hero-grid {
  display: block;
}

.hero-copy {
  max-width: 870px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 102, 117, 0.14);
  border-radius: 999px;
  background: rgba(255, 102, 117, 0.06);
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(2.4rem, 9vw, 4.45rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 6vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  line-height: 1.25;
}

.lead {
  max-width: 690px;
  margin-inline: auto;
  color: #5d5967;
  font-size: 1.03rem;
}

.highlight {
  display: inline-block;
  margin-bottom: 20px;
  padding: 11px 16px;
  border: 1px solid rgba(125, 92, 255, 0.14);
  border-radius: 999px;
  background: rgba(125, 92, 255, 0.06);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 6px 0 10px;
}

.hero-microcopy {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.review-pill {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 16px;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(23, 21, 29, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(23, 21, 29, 0.07);
}

.review-avatars {
  display: flex;
  flex: 0 0 auto;
  padding-left: 6px;
}

.review-avatars span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: -6px;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.review-avatars span:nth-child(1) {
  background: #ff9f76;
}

.review-avatars span:nth-child(2) {
  background: #7d5cff;
}

.review-avatars span:nth-child(3) {
  background: #17151d;
}

.review-avatars span:nth-child(4) {
  background: #5cc6ff;
}

.review-pill p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.9rem, 3.5vw, 1.15rem);
  font-weight: 800;
  line-height: 1.2;
}

.review-pill strong {
  font-size: 1.08em;
  font-weight: 950;
}

.review-star {
  flex: 0 0 auto;
  font-size: 1.6rem;
  line-height: 1;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-badges li {
  padding: 8px 10px;
  border: 1px solid rgba(23, 21, 29, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #4f4a52;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 720px;
  margin: 22px auto 0;
}

.hero-proof article {
  padding: 16px 14px;
  border: 1px solid rgba(23, 21, 29, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(23, 21, 29, 0.05);
}

.hero-proof strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.logo-marquee-section {
  padding: 16px 0 58px;
  background: linear-gradient(180deg, #fffdfb, #ffffff);
}

.marquee-kicker {
  max-width: 560px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 8px 0;
  animation: logo-marquee 30s linear infinite;
}

.logo-item {
  min-width: 176px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid rgba(23, 21, 29, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(23, 21, 29, 0.04);
  color: #5f5a67;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.logo-item-wide {
  min-width: 190px;
}

.logo-item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.logo-item-wide img {
  width: 82px;
}

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

.align-left {
  margin-inline: 0;
  text-align: left;
}

.align-left p:not(.eyebrow) {
  max-width: 620px;
}

.section-head p,
.two-col p,
.price-grid p,
.faq-grid p,
.split-card p,
.custom-panel p,
.revision-grid p {
  color: var(--muted);
}

.thought-grid,
.feature-grid,
.proof-grid,
.testimonial-grid,
.steps-grid,
.portfolio-grid {
  display: grid;
  gap: 14px;
}

.thought-grid article,
.feature-grid article,
.proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 21, 29, 0.04);
  font-weight: 850;
}

.feature-grid article::before,
.proof-grid article::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 216, 54, 0.2);
}

.closing-line {
  margin-top: 24px;
  color: var(--muted);
  font-weight: 800;
}

.split-card,
.custom-panel {
  display: grid;
  gap: 26px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 56px rgba(23, 21, 29, 0.06);
}

.note {
  color: var(--muted);
  font-size: 0.92rem;
}

.check-list,
.x-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 28px;
  color: #4d4954;
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.check-list li::before {
  content: "✓";
  background: rgba(255, 216, 54, 0.45);
  color: #5e4a00;
}

.x-list li::before {
  content: "×";
  background: rgba(244, 95, 106, 0.12);
  color: var(--coral-dark);
}

.compact {
  gap: 9px;
}

.price-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 102, 117, 0.08), transparent 30%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.price-card,
.testimonial,
.list-panel,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(23, 21, 29, 0.06);
}

.price-card {
  padding: 24px;
}

.price-title {
  margin: 0 0 4px;
  color: var(--ink);
  font-weight: 950;
}

.price {
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: clamp(3.2rem, 15vw, 5.25rem);
  font-weight: 950;
  line-height: 0.92;
}

.price-card .btn {
  margin: 22px 0 12px;
}

.portfolio-shell {
  position: relative;
  width: min(100vw, 1320px);
  margin-left: 50%;
  padding-bottom: 88px;
  transform: translateX(-50%);
}

.portfolio-rail {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.portfolio-grid {
  display: flex;
  width: max-content;
  gap: clamp(16px, 3vw, 30px);
  padding: 10px clamp(16px, 4vw, 54px) 22px;
  animation: portfolio-swipe 38s linear infinite;
  will-change: transform;
}

.portfolio-rail:hover .portfolio-grid {
  animation-play-state: paused;
}

.portfolio-card {
  width: clamp(320px, 58vw, 760px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(23, 21, 29, 0.1);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.portfolio-controls {
  position: absolute;
  right: clamp(16px, 4vw, 54px);
  bottom: 4px;
  display: flex;
  gap: 16px;
}

.portfolio-control {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f0f0f2;
  color: var(--ink);
  cursor: pointer;
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.7;
  transition: transform 180ms ease, background 180ms ease;
}

.portfolio-control:hover {
  background: #e5e5e8;
  transform: translateY(-2px);
}

.testimonial {
  padding: 22px;
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  color: var(--ink);
  font-weight: 950;
}

.testimonial p {
  color: #4d4954;
}

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

.testimonial span {
  color: var(--muted);
  font-size: 0.92rem;
}

.custom-panel {
  background:
    linear-gradient(135deg, rgba(255, 216, 54, 0.24), rgba(244, 95, 106, 0.12)),
    var(--white);
}

.custom-panel .btn {
  margin-bottom: 14px;
}

.steps-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.steps-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 950;
}

.steps-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.revision-grid {
  display: grid;
  gap: 16px;
}

.list-panel {
  padding: 20px;
}

.muted-panel {
  background: #fffcf7;
}

.domain-section {
  padding-top: 0;
}

.renewal-box {
  align-self: center;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.renewal-box span {
  color: var(--yellow);
  font-weight: 850;
}

.renewal-box strong {
  display: block;
  margin: 6px 0 12px;
  font-size: clamp(2rem, 9vw, 3.5rem);
  line-height: 0.98;
}

.renewal-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

details {
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 10px 0 0;
}

.final-cta {
  padding-top: 0;
}

.final-panel {
  padding: 48px 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(25, 24, 29, 0.9), rgba(25, 24, 29, 0.76)),
    linear-gradient(135deg, var(--coral), var(--yellow));
  color: var(--white);
  text-align: center;
}

.final-panel h2 {
  max-width: 820px;
  margin-inline: auto;
}

.final-panel p {
  max-width: 640px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.82);
}

.final-panel .highlight {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.site-footer {
  padding: 64px 0 92px;
  background: #151318;
  color: var(--white);
}

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

.footer-brand img {
  background: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 1rem;
  line-height: 1.25;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.copyright {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright p {
  margin: 0;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(25, 24, 29, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 180ms ease, transform 180ms ease;
}

@keyframes portfolio-swipe {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta span {
  font-size: 0.92rem;
  font-weight: 900;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding-inline: 18px;
  border-radius: 6px;
  background: var(--coral);
  color: var(--white);
  font-weight: 950;
}

@media (min-width: 640px) {
  .hero-actions {
    display: flex;
  }

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

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

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

@media (min-width: 820px) {
  .nav-links {
    display: flex;
  }

  .hero-grid,
  .two-col,
  .price-grid,
  .faq-grid {
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
  }

  .hero {
    padding-top: 76px;
  }

  .section {
    padding: 88px 0;
  }

  .split-card,
  .custom-panel {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 36px;
  }

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

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

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

  .steps-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .portfolio-grid {
    padding-bottom: 24px;
  }

  .revision-grid {
    grid-template-columns: 0.9fr 1fr 1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 0.9fr 1.4fr 0.5fr;
  }

  .site-footer {
    padding-bottom: 42px;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1.04fr 0.96fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
