:root {
  --ink: #15130f;
  --muted: #6f685f;
  --paper: #fbf4e8;
  --paper-2: #fffaf1;
  --card: rgba(255, 250, 241, 0.82);
  --line: rgba(30, 25, 19, 0.12);
  --dark: #181610;
  --dark-2: #242015;
  --accent: #d96f32;
  --accent-2: #9cbf71;
  --accent-soft: #f3d7bf;
  --blue: #1f5c68;
  --shadow: 0 24px 80px rgba(39, 28, 15, 0.14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Newsreader, Georgia, serif;
  --text-sm: clamp(0.88rem, 0.83rem + 0.22vw, 1rem);
  --text-md: clamp(1rem, 0.95rem + 0.32vw, 1.16rem);
  --text-lg: clamp(1.18rem, 1rem + 0.75vw, 1.55rem);
  --text-xl: clamp(2.1rem, 1.5rem + 2.7vw, 4.2rem);
  --text-hero: clamp(3.1rem, 2.05rem + 5vw, 6.6rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 111, 50, 0.24), transparent 28rem),
    radial-gradient(circle at 88% 0%, rgba(156, 191, 113, 0.26), transparent 28rem),
    linear-gradient(180deg, var(--paper), #fffaf1 38%, #f5eadb 100%);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 50;
}
.skip-link:focus { left: 12px; }

.site-header {
  width: min(calc(100% - 32px), var(--max));
  margin: 18px auto 0;
  padding: 10px 10px 10px 14px;
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(35, 25, 13, 0.08);
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -0.04em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--paper-2);
  background: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1;
}
.brand-word { font-size: 1.12rem; }
.nav-links { display: flex; gap: 24px; color: var(--muted); font-size: 0.92rem; font-weight: 700; }
.nav-links a:hover { color: var(--ink); }
.header-cta {
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper-2);
  font-weight: 800;
  font-size: 0.9rem;
}

.section-pad { padding: clamp(70px, 9vw, 132px) 20px; }
.compact { padding-top: clamp(48px, 7vw, 90px); padding-bottom: clamp(48px, 7vw, 90px); }
.hero { padding-top: clamp(58px, 7vw, 100px); }
.hero-grid, .section-head, .problem-grid, .split, .steps, .before-after, .package-grid, .pill-grid, .why-card, .final-box, .site-footer {
  width: min(calc(100% - 16px), var(--max));
  margin-inline: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.9fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.79rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: var(--text-hero);
  line-height: 0.91;
  letter-spacing: -0.075em;
  max-width: 850px;
}
h2 {
  font-size: var(--text-xl);
  line-height: 0.98;
  letter-spacing: -0.058em;
  margin-bottom: 18px;
}
h3 { font-size: 1.15rem; letter-spacing: -0.03em; margin-bottom: 10px; }
.hero-lede {
  max-width: 700px;
  color: #4b453c;
  font-size: var(--text-lg);
  line-height: 1.55;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-actions.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .header-cta:focus-visible, .price-card a:focus-visible, .mobile-sticky a:focus-visible {
  outline: 3px solid rgba(217, 111, 50, 0.4);
  outline-offset: 3px;
}
.btn-primary { background: var(--ink); color: var(--paper-2); box-shadow: 0 16px 32px rgba(21,19,15,0.18); }
.btn-secondary { background: rgba(255, 255, 255, 0.62); border: 1px solid var(--line); color: var(--ink); }
.btn-secondary.dark { background: rgba(24,22,16,0.05); }
.cta-note {
  margin: 12px 0 0;
  color: #6a6155;
  font-size: 0.92rem;
  font-weight: 750;
}
.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 28px 0 0;
}
.trust-row li, .pill-grid span {
  border: 1px solid rgba(21,19,15,0.11);
  background: rgba(255,255,255,0.52);
  border-radius: 999px;
  padding: 9px 13px;
  color: #5b544b;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-visual {
  min-height: 570px;
  position: relative;
  border-radius: 48px;
  background:
    radial-gradient(circle at 22% 16%, rgba(255,255,255,0.18), transparent 18rem),
    radial-gradient(circle at 80% 78%, rgba(217,111,50,0.32), transparent 18rem),
    linear-gradient(135deg, rgba(31,92,104,0.2), transparent 36%),
    linear-gradient(145deg, #241d14, #0f1513 68%);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 36px;
}
.hero-visual-plus:after {
  content: "";
  position: absolute;
  inset: auto -20% -32% 10%;
  height: 42%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(156,191,113,0.28), rgba(217,111,50,0.22), rgba(255,250,241,0.18));
  filter: blur(4px);
  transform: rotate(-6deg);
  z-index: -1;
}
.motion-orb {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, rgba(255,255,255,0.85), rgba(217,111,50,0.6) 32%, rgba(31,92,104,0.08) 70%);
  filter: blur(0.2px);
  opacity: 0.75;
  animation: floatOrb 8s ease-in-out infinite;
}
.orb-one { top: 34px; right: 46px; }
.orb-two { width: 95px; height: 95px; left: 44px; bottom: 170px; animation-duration: 10s; animation-delay: -2.5s; opacity: 0.5; }
@keyframes floatOrb {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-12px,18px,0) scale(1.06); }
}
.hero-webdesign-shot {
  position: absolute;
  width: 62%;
  min-height: 270px;
  right: 42px;
  top: 38px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.34);
  background:
    radial-gradient(circle at 78% 18%, rgba(217,111,50,0.28), transparent 9rem),
    linear-gradient(145deg, rgba(255,250,241,0.96), rgba(242,226,205,0.94));
  box-shadow: 0 28px 80px rgba(0,0,0,0.32);
  transform: rotate(3deg);
  z-index: 1;
}
.design-toolbar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: rgba(21,19,15,0.92);
  color: var(--paper-2);
}
.design-toolbar span { width: 9px; height: 9px; border-radius: 50%; background: #f0b58b; }
.design-toolbar span:nth-child(2) { background: #e5d2b7; }
.design-toolbar span:nth-child(3) { background: #9cbf71; }
.design-toolbar strong { margin-left: 8px; font-size: 0.76rem; letter-spacing: 0.03em; }
.design-canvas {
  position: relative;
  height: 228px;
  padding: 18px;
}
.website-frame {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 73%;
  height: 188px;
  border-radius: 18px;
  padding: 16px;
  background: #fffaf1;
  border: 1px solid rgba(21,19,15,0.1);
  box-shadow: 0 18px 45px rgba(39,28,15,0.12);
}
.site-nav-line { width: 58%; height: 9px; border-radius: 99px; background: #d7c7b4; margin-bottom: 18px; }
.site-hero-block {
  width: 82%;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, #1f5c68, #d96f32);
  margin-bottom: 14px;
}
.site-copy-line { width: 78%; height: 9px; border-radius: 99px; background: #d9cbbb; margin-bottom: 9px; }
.site-copy-line.short { width: 48%; }
.site-card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 16px; }
.site-card-row i { height: 34px; border-radius: 12px; background: #efe1cc; border: 1px solid rgba(21,19,15,0.06); }
.phone-frame-small {
  position: absolute;
  right: 16px;
  bottom: 12px;
  width: 31%;
  min-width: 112px;
  height: 174px;
  border-radius: 24px;
  padding: 18px 10px 10px;
  background: #17140f;
  color: white;
  box-shadow: 0 20px 54px rgba(0,0,0,0.28);
}
.phone-frame-small b { display: block; width: 42px; height: 5px; border-radius: 99px; background: rgba(255,255,255,0.34); margin: -6px auto 18px; }
.phone-frame-small i { display: block; height: 12px; border-radius: 99px; background: rgba(255,250,241,0.78); margin: 9px 0; }
.phone-frame-small i:nth-of-type(1) { width: 78%; height: 32px; background: linear-gradient(135deg, #f3d7bf, #9cbf71); }
.phone-frame-small i:nth-of-type(2) { width: 58%; }
.phone-frame-small span { display: block; margin-top: 18px; padding: 9px 7px; border-radius: 999px; text-align: center; background: var(--accent); color: #1b130d; font-size: 0.66rem; font-weight: 900; }
.design-badge {
  position: absolute;
  left: 18px;
  bottom: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,250,241,0.9);
  color: #35291f;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(39,28,15,0.14);
}
.hero-chip {
  position: absolute;
  z-index: 3;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,250,241,0.92);
  border: 1px solid rgba(255,255,255,0.5);
  color: #2c261f;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}
.chip-route { right: 28px; bottom: 28px; }
.chip-mobile { left: 38px; top: 28px; background: rgba(156,191,113,0.95); }
.preview-card {
  position: absolute;
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 26px 70px rgba(0,0,0,0.28);
}
.old-card {
  width: 62%;
  min-height: 285px;
  left: 34px;
  top: 62px;
  border-radius: 24px;
  padding: 18px;
  transform: rotate(-4deg);
  opacity: 0.88;
}
.new-card {
  width: 52%;
  min-height: 330px;
  right: 34px;
  bottom: 54px;
  border-radius: 34px;
  padding: 34px 22px 22px;
  transform: rotate(3deg);
}
.browser-bar { display: flex; gap: 6px; margin-bottom: 24px; }
.browser-bar span { width: 10px; height: 10px; border-radius: 50%; background: #d8c8b6; }
.mini-label { font-size: 0.78rem; color: var(--accent); font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }
.old-lines { display: grid; gap: 14px; }
.old-lines i { display: block; height: 14px; border-radius: 999px; background: #d7cbbd; }
.old-lines i:nth-child(1){ width: 78%; height: 28px; }
.old-lines i:nth-child(2){ width: 48%; }
.old-lines i:nth-child(3){ width: 64%; }
.old-lines i:nth-child(4){ width: 34%; }
.old-warning { margin-top: 26px; padding: 12px; border-radius: 16px; background: #f2d4c0; color: #7d3a19; font-weight: 800; font-size: 0.88rem; }
.phone-notch { width: 58px; height: 6px; border-radius: 99px; background: #d3c7b6; margin: -18px auto 22px; }
.new-card h2 { font-size: clamp(2rem, 3vw, 3.4rem); margin-bottom: 12px; }
.new-card p:not(.mini-label) { color: #5d554a; line-height: 1.45; }
.mobile-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 26px; }
.mobile-buttons span { text-align: center; padding: 10px 6px; border-radius: 999px; background: var(--ink); color: white; font-size: 0.74rem; font-weight: 900; }
.floating-note {
  position: absolute;
  left: 46px;
  bottom: 52px;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--accent-2);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 0.95;
  transform: rotate(-2deg);
}

.section-head { text-align: center; max-width: 850px; }
.section-head.narrow { max-width: 760px; }
.section-head p:not(.eyebrow), .split-text, .soft-card p, .steps p, .example-panel li, .description, .why-list p, .final-box p {
  color: var(--muted);
  line-height: 1.65;
  font-size: var(--text-md);
}
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.soft-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.43);
}
.card-number { color: var(--accent); font-weight: 900; font-size: 0.82rem; }
.soft-card h3 { margin-top: 42px; }

.split { display: grid; grid-template-columns: 0.9fr 1fr; gap: clamp(28px, 7vw, 80px); align-items: end; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 42px; }
.steps article {
  position: relative;
  padding: 26px;
  min-height: 255px;
  border-radius: var(--radius-md);
  background: var(--dark);
  color: var(--paper-2);
  overflow: hidden;
}
.steps article:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(217,111,50,0.22);
}
.steps strong { color: var(--accent-soft); font-family: var(--font-serif); font-size: 3rem; }
.steps p { color: rgba(255,250,241,0.72); font-size: 0.98rem; }

.examples { background: rgba(255,255,255,0.35); border-block: 1px solid rgba(21,19,15,0.08); }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 42px; }
.example-panel { padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: rgba(255,250,241,0.76); }
.example-panel > span { display: inline-block; margin-bottom: 18px; color: var(--accent); font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; }
.mock-page { min-height: 280px; border-radius: 24px; padding: 26px; margin-bottom: 20px; }
.mock-page.muted { display: grid; gap: 14px; align-content: center; background: #e4dacd; }
.mock-page.muted div { height: 18px; border-radius: 999px; background: #c7b9a7; }
.mock-page.muted div:nth-child(1){ width: 70%; height: 42px; }
.mock-page.muted div:nth-child(2){ width: 46%; }
.mock-page.muted div:nth-child(3){ width: 86%; }
.mock-page.muted div:nth-child(4){ width: 38%; }
.mock-page.polished { background: linear-gradient(140deg, #1f5c68, #15201b); color: white; display: flex; flex-direction: column; justify-content: end; }
.mock-page.polished strong { color: #f5d0b2; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; }
.mock-page.polished h3 { font-size: clamp(1.8rem, 3vw, 3.4rem); line-height: 0.98; max-width: 520px; }
.mock-page.polished p { color: rgba(255,255,255,0.74); }
.example-panel ul { padding-left: 20px; margin-bottom: 0; }

.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; align-items: stretch; }
.price-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  box-shadow: 0 10px 30px rgba(39,28,15,0.06);
}
.price-card.featured { background: var(--dark); color: white; transform: translateY(-12px); box-shadow: 0 30px 90px rgba(21,19,15,0.24); }
.price-card.care { background: rgba(156,191,113,0.22); }
.plan-label { color: var(--accent); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.featured .plan-label { color: #f3d7bf; }
.price { font-family: var(--font-serif); font-size: 2.3rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.04em; }
.price-card ul { padding-left: 18px; color: var(--muted); line-height: 1.9; margin-bottom: 24px; }
.featured ul, .featured .description { color: rgba(255,255,255,0.72); }
.price-card a {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 13px 14px;
  border-radius: 999px;
  font-weight: 900;
  background: var(--ink);
  color: var(--paper-2);
}
.featured a { background: var(--accent); color: var(--ink); }

.pill-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.why-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: clamp(28px, 5vw, 62px);
  border-radius: 44px;
  background: var(--dark);
  color: var(--paper-2);
  box-shadow: var(--shadow);
}
.why-card h2 { color: white; }
.why-list { display: grid; gap: 14px; }
.why-list p { margin: 0; color: rgba(255,250,241,0.76); }
.why-list strong { color: #f4c5a3; margin-right: 12px; }

.final-cta { padding-top: 40px; }
.final-box {
  text-align: center;
  padding: clamp(38px, 7vw, 86px) clamp(22px, 5vw, 76px);
  border-radius: 48px;
  background:
    radial-gradient(circle at 20% 10%, rgba(217,111,50,0.2), transparent 28rem),
    rgba(255,250,241,0.78);
  border: 1px solid rgba(21,19,15,0.1);
  box-shadow: var(--shadow);
}
.final-box p:not(.eyebrow) { max-width: 760px; margin-inline: auto; }
.local-note {
  color: var(--ink) !important;
  font-weight: 900;
}
.microcopy { font-size: 0.93rem !important; margin-top: 20px; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 20px 110px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.site-footer div { display: flex; gap: 18px; font-weight: 800; }
.mobile-sticky { display: none; }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .hero-grid, .split, .why-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .hero-visual { min-height: 520px; }
  .problem-grid, .steps, .package-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 22px); top: 8px; }
  .header-cta { display: none; }
  .brand-mark { width: 34px; height: 34px; }
  .section-pad { padding-left: 14px; padding-right: 14px; }
  .hero { padding-top: 42px; }
  h1 { font-size: clamp(3rem, 15vw, 4.9rem); }
  .hero-lede { font-size: 1.08rem; }
  .hero-actions { align-items: stretch; }
  .btn { width: 100%; }
  .trust-row li { font-size: 0.8rem; padding: 8px 10px; }
  .hero-visual { min-height: 450px; border-radius: 34px; }
  .hero-webdesign-shot { width: 78%; right: -20px; top: 24px; min-height: 220px; opacity: 0.78; }
  .design-canvas { height: 178px; }
  .website-frame { width: 72%; height: 146px; padding: 12px; }
  .phone-frame-small { width: 33%; min-width: 92px; height: 132px; right: 10px; bottom: 10px; }
  .design-badge { font-size: 0.68rem; left: 14px; bottom: 12px; }
  .motion-orb { width: 115px; height: 115px; opacity: 0.48; }
  .orb-two { display: none; }
  .hero-chip { font-size: 0.72rem; padding: 9px 11px; }
  .chip-mobile { left: 18px; top: 18px; }
  .chip-route { right: 14px; bottom: 14px; }
  .old-card { width: 72%; left: 18px; top: 70px; min-height: 205px; }
  .new-card { width: 64%; right: 16px; bottom: 46px; min-height: 250px; padding: 30px 16px 16px; }
  .floating-note { left: 20px; bottom: 30px; font-size: 1.08rem; max-width: 145px; }
  .problem-grid, .steps, .before-after, .package-grid { grid-template-columns: 1fr; }
  .steps article { min-height: auto; }
  .mock-page { min-height: 230px; }
  .why-card, .final-box { border-radius: 30px; }
  .site-footer { flex-direction: column; padding-bottom: 104px; }
  .site-footer div { flex-direction: column; gap: 8px; }
  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 40;
    display: block;
  }
  .mobile-sticky a {
    display: flex;
    justify-content: center;
    padding: 15px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--paper-2);
    font-weight: 900;
    box-shadow: 0 16px 48px rgba(21,19,15,0.26);
  }
}

@media (max-width: 410px) {
  .brand-word { font-size: 1rem; }
  h1 { letter-spacing: -0.08em; }
  .old-card { width: 76%; opacity: 0.75; }
  .new-card { width: 69%; }
  .mobile-buttons { grid-template-columns: 1fr; }
}
