:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --ink: #171717;
  --muted: #6b6f76;
  --line: #e8e2d8;
  --red: #b53a32;
  --red-dark: #8f2823;
  --sage: #6f8a76;
  --blue: #dce8ee;
  --cream: #f4efe5;
  --shadow: 0 24px 70px rgba(31, 35, 39, 0.13);
  --radius: 8px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(232, 226, 216, 0.72);
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-logo-wrap {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(31, 35, 39, 0.1);
  overflow: hidden;
}

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

.brand-text {
  font-size: 1rem;
  white-space: nowrap;
}

.nav-links {
  gap: clamp(14px, 2vw, 28px);
  color: #464a50;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 160ms ease;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  padding: calc(var(--header-height) + 38px) clamp(20px, 6vw, 86px) 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.94), rgba(251, 250, 247, 0.66) 54%, rgba(220, 232, 238, 0.45)),
    radial-gradient(circle at 78% 35%, rgba(181, 58, 50, 0.1), transparent 26%);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.15rem, 7vw, 6.9rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-subline {
  margin: 26px 0 0;
  color: #2d3136;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 560px;
  margin: 18px 0 30px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 32px rgba(23, 23, 23, 0.18);
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  touch-action: manipulation;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  box-shadow: 0 20px 38px rgba(143, 40, 35, 0.22);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.preview-shell {
  position: relative;
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.preview-shell img {
  width: 100%;
  border-radius: var(--radius);
}

.floating {
  animation: float 5.8s ease-in-out infinite;
}

.proof-pill {
  position: absolute;
  display: grid;
  gap: 2px;
  width: min(230px, 44vw);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 38px rgba(31, 35, 39, 0.11);
  backdrop-filter: blur(14px);
}

.proof-pill strong {
  font-size: 0.88rem;
}

.proof-pill span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.proof-pill-one {
  left: -18px;
  bottom: 15%;
}

.proof-pill-two {
  right: 4%;
  top: 8%;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(23, 23, 23, 0.22);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  transform: translateX(-50%);
  animation: cue 1.8s ease-in-out infinite;
}

.section {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(76px, 11vw, 132px) clamp(20px, 4vw, 42px);
}

.section + .section {
  border-top: 1px solid rgba(232, 226, 216, 0.58);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.section-split.reverse {
  grid-template-columns: minmax(340px, 1fr) minmax(0, 0.86fr);
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section p,
.final-cta p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-copy > p:not(.section-kicker) {
  margin: 22px 0;
}

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

.feature-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  font-weight: 700;
}

.icon-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(181, 58, 50, 0.1);
}

.image-frame,
.styles-showcase,
.process-image {
  border: 1px solid rgba(232, 226, 216, 0.85);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.image-frame img,
.styles-showcase img,
.process-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.image-frame img {
  aspect-ratio: 1.05 / 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.styles-showcase {
  margin-bottom: 24px;
}

.style-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.style-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(31, 35, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.style-card:hover,
.process-steps article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(31, 35, 39, 0.12);
}

.style-card span {
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.style-card h3,
.process-steps h3 {
  margin: 14px 0 8px;
  font-size: 1.02rem;
}

.style-card p,
.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.style-minimal {
  background: linear-gradient(180deg, #fff, #f7f7f5);
}

.style-elegant {
  background: linear-gradient(180deg, #fff, #eef3eb);
}

.style-bold {
  color: #fff;
  background: linear-gradient(180deg, #222, #7e2824);
}

.style-bold p,
.style-bold span {
  color: rgba(255, 255, 255, 0.78);
}

.style-warm {
  background: linear-gradient(180deg, #fff, #f3e7d8);
}

.check-list,
.included-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.included-list li {
  position: relative;
  padding-left: 30px;
  color: #333840;
  line-height: 1.45;
}

.check-list li::before,
.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 44%, #fff 45% 55%, transparent 56%),
    var(--sage);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(0, 0.78fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.process-steps {
  display: grid;
  gap: 14px;
}

.process-steps article {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-steps span {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

.process-steps h3 {
  margin-top: 0;
}

.pricing-section {
  max-width: none;
  padding-top: clamp(72px, 9vw, 108px);
  padding-bottom: clamp(72px, 9vw, 108px);
  background: linear-gradient(180deg, rgba(244, 239, 229, 0), rgba(244, 239, 229, 0.68));
}

.price-card {
  max-width: 1096px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(28px, 6vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 12px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.96), rgba(44, 52, 49, 0.94)),
    linear-gradient(135deg, var(--ink), var(--red-dark));
  box-shadow: var(--shadow);
}

.price-card .section-kicker,
.price-card p {
  color: rgba(255, 255, 255, 0.72);
}

.price-card h2 {
  color: #fff;
}

.hosting-note {
  margin-top: 26px;
  color: #fff;
  font-weight: 700;
}

.included-list {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.included-list li {
  color: rgba(255, 255, 255, 0.9);
}

.final-cta {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 6vw, 70px);
  padding: clamp(76px, 11vw, 132px) max(clamp(20px, 4vw, 42px), calc((100vw - 1180px) / 2 + 42px));
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(220, 232, 238, 0.46)),
    var(--bg);
}

.final-copy {
  align-self: center;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid rgba(181, 58, 50, 0.2);
  border-radius: var(--radius);
  color: var(--red-dark);
  background: rgba(255, 255, 255, 0.66);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-email:hover {
  transform: translateY(-2px);
  background: #fff;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.91)),
    #fff;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: #363b41;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #ddd7cd;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(181, 58, 50, 0.64);
  box-shadow: 0 0 0 4px rgba(181, 58, 50, 0.1);
}

.form-row textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-weight: 700;
  line-height: 1.45;
}

.form-message.is-error {
  color: var(--red-dark);
}

.site-footer {
  padding: 36px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a:not(.footer-brand) {
  color: var(--red-dark);
  font-weight: 700;
}

.footer-inner small {
  color: #8a8d91;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes cue {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.44;
  }
  50% {
    transform: translate(-50%, 12px);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero,
  .section-split,
  .section-split.reverse,
  .process-layout,
  .price-card,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 44px);
    gap: 28px;
  }

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

  .proof-pill-one {
    left: 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    height: auto;
    min-height: var(--header-height);
    align-items: stretch;
    gap: 12px;
    padding: 16px 20px;
    flex-direction: column;
  }

  .brand {
    justify-content: center;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.84rem;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding: 34px 20px 58px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.85rem);
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-subline {
    margin-top: 20px;
  }

  .primary-button {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
  }

  .preview-shell {
    padding: 7px;
    border-radius: var(--radius);
  }

  .proof-pill {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .scroll-cue {
    display: none;
  }

  .feature-grid,
  .style-card-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .section p,
  .final-cta p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .image-frame,
  .styles-showcase,
  .process-image {
    padding: 7px;
    border-radius: var(--radius);
  }

  .style-card {
    min-height: 160px;
  }

  .process-steps article {
    grid-template-columns: 40px 1fr;
  }

  .process-steps span {
    width: 40px;
    height: 40px;
  }

  .price-card {
    padding: 24px;
    border-radius: var(--radius);
  }

  .included-list {
    padding: 18px;
  }

  .final-cta {
    gap: 26px;
  }

  .contact-form {
    padding: 20px;
    border-radius: var(--radius);
  }

  .contact-email {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
