:root {
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --ink: #08090d;
  --muted: #676b76;
  --line: rgba(8, 9, 13, 0.09);
  --line-strong: rgba(8, 9, 13, 0.16);
  --blue: #145cff;
  --blue-soft: #eaf0ff;
  --green: #d8ff5f;
  --orange: #ff8b3d;
  --pink: #ff4fb3;
  --radius-xl: 36px;
  --radius-lg: 26px;
  --shadow-soft: 0 24px 80px rgba(16, 24, 40, 0.10);
  --shadow-card: 0 18px 50px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Geist", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(20, 92, 255, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 48%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(8, 9, 13, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 9, 13, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 58%);
}

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

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.brand,
.header-cta,
.pill-nav {
  min-height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  padding: 6px 16px 6px 7px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 12px;
  flex: 0 0 auto;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  letter-spacing: -0.05em;
}

.pill-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
}

.pill-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  transition: color 180ms ease, background-color 180ms ease;
}

.pill-nav a:hover {
  color: var(--ink);
  background: #f0f2f7;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
}

main {
  overflow: hidden;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 16px;
  text-align: center;
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.095em;
  font-weight: 900;
}

.hero-copy p {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 20px auto 0;
}

.proof-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.06);
  text-align: left;
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 36px rgba(8, 9, 13, 0.18);
}

.button-light {
  background: #fff;
  border: 1px solid var(--line);
}

.hero-stage {
  position: relative;
  max-width: 980px;
  min-height: 410px;
  margin: 40px auto 0;
}

.site-preview,
.floating-preview,
.work-card,
.bento-card,
.timeline-item,
.cta-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.site-preview {
  position: absolute;
  inset: 38px 90px 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  text-align: left;
}

.site-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 255, 95, 0.65), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 79, 179, 0.34), transparent 28%),
    linear-gradient(135deg, #f5f8ff, #ffffff 42%, #edf3ff);
  z-index: 0;
}

.preview-bar,
.preview-hero,
.preview-grid {
  position: relative;
  z-index: 1;
}

.preview-bar,
.browser-top {
  display: flex;
  gap: 7px;
  padding: 18px;
}

.preview-bar span,
.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(8, 9, 13, 0.18);
}

.preview-hero {
  padding: 42px 46px 34px;
}

.preview-hero p {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 850;
}

.preview-hero h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.preview-button {
  width: 154px;
  height: 44px;
  margin-top: 28px;
  border-radius: 999px;
  background: var(--ink);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 46px 46px;
}

.preview-grid span {
  height: 118px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

.floating-preview {
  position: absolute;
  z-index: 2;
  border-radius: 24px;
  padding: 20px;
  text-align: left;
}

.preview-left {
  width: 230px;
  left: 6px;
  top: 108px;
  transform: rotate(-4deg);
}

.preview-right {
  width: 190px;
  right: 18px;
  top: 86px;
  transform: rotate(5deg);
}

.mini-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.floating-preview strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.preview-right strong {
  font-size: 4rem;
  line-height: 0.9;
}

.preview-right p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.mini-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.mini-lines span {
  height: 12px;
  border-radius: 99px;
  background: #edf0f7;
}

.mini-lines span:last-child {
  width: 70%;
}

.logos {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 0 72px;
}

.logos span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.showcase,
.case-study,
.features,
.pricing,
.process,
.cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.section-head h2,
.cta-card h2 {
  margin: 16px 0 0;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.section-head p {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.project-wall {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.work-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.work-card-large {
  grid-row: span 2;
}

.browser-frame {
  min-height: 320px;
  margin: 16px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.work-card-large .browser-frame {
  min-height: 560px;
}

.frame-blue {
  background:
    radial-gradient(circle at 80% 22%, rgba(216, 255, 95, 0.75), transparent 22%),
    linear-gradient(145deg, #dfe9ff 0%, #ffffff 48%, #d9e4ff 100%);
}

.frame-ceramic {
  background:
    radial-gradient(circle at 78% 18%, rgba(241, 198, 148, 0.86), transparent 24%),
    radial-gradient(circle at 18% 72%, rgba(109, 83, 64, 0.18), transparent 26%),
    linear-gradient(145deg, #f5eadf 0%, #fffaf3 48%, #dfc8b4 100%);
}

.screenshot-frame {
  display: flex;
  flex-direction: column;
  background: #fbf5ed;
}

.screenshot-link {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.screenshot-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(69, 49, 35, 0.14);
}

.project-screenshot {
  display: block;
  width: calc(100% - 28px);
  height: 490px;
  margin: 0 14px 14px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  border: 1px solid rgba(8, 9, 13, 0.08);
  box-shadow: 0 18px 45px rgba(69, 49, 35, 0.16);
}

.frame-green {
  background: linear-gradient(145deg, #eefbd8 0%, #ffffff 50%, #dff5c8 100%);
}

.frame-orange {
  background: linear-gradient(145deg, #fff0e7 0%, #ffffff 48%, #ffd7bf 100%);
}

.mock-layout {
  padding: 34px;
}

.mock-title {
  width: 72%;
  height: 92px;
  border-radius: 22px;
  background: var(--ink);
}

.mock-title-utbrent {
  width: 58%;
  background: linear-gradient(135deg, #3d3028, #8b6b51);
}

.mock-copy,
.mock-copy.short {
  height: 14px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.16);
}

.mock-copy {
  width: 55%;
}

.mock-copy.short {
  width: 36%;
}

.mock-image {
  height: 220px;
  margin-top: 42px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 30%, #f3d3b5 0 12%, transparent 13%),
    radial-gradient(circle at 58% 46%, #8a6a52 0 15%, transparent 16%),
    radial-gradient(circle at 78% 24%, #f8efe4 0 13%, transparent 14%),
    linear-gradient(135deg, #4f3c31, #c6a083 48%, #f3e5d4);
}

.mock-dashboard,
.mock-store {
  display: grid;
  gap: 14px;
  padding: 28px;
}

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

.mock-dashboard span {
  height: 98px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
}

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

.mock-store span {
  height: 190px;
  border-radius: 24px;
  background: rgba(8, 9, 13, 0.12);
}

.work-meta {
  padding: 4px 26px 28px;
}

.work-meta span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.work-meta h3 {
  margin: 8px 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.work-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.work-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 9, 13, 0.18);
}

.case-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.case-panel {
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.case-visual {
  overflow: hidden;
}

.case-visual .browser-frame {
  min-height: 100%;
  margin: 16px;
}

.case-screenshot {
  height: 100%;
  min-height: 560px;
}

.case-copy {
  padding: 34px;
}

.case-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #f3f4f7;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.case-copy h3 {
  margin: 18px 0 12px;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.case-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.case-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.case-point {
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.case-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.96rem;
  letter-spacing: -0.03em;
}

.case-point span {
  color: var(--muted);
  line-height: 1.55;
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.price-card-featured {
  border-color: rgba(8, 9, 13, 0.18);
  background:
    radial-gradient(circle at 82% 10%, rgba(216, 255, 95, 0.42), transparent 24%),
    #fff;
}

.price-label {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #f3f4f7;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.price-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.price-amount {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.price-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bento-card {
  min-height: 270px;
  border-radius: var(--radius-xl);
  padding: 28px;
}

.bento-large {
  grid-column: span 2;
  background:
    radial-gradient(circle at 85% 20%, rgba(216, 255, 95, 0.75), transparent 24%),
    #fff;
}

.feature-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.bento-card h3,
.timeline-item h3 {
  margin: 34px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.bento-card p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline-item {
  min-height: 260px;
  border-radius: var(--radius-xl);
  padding: 28px;
}

.timeline-item span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
}

.cta {
  padding-bottom: 110px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 46px;
  padding: clamp(34px, 7vw, 84px);
  text-align: center;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 79, 179, 0.20), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(216, 255, 95, 0.52), transparent 24%),
    #fff;
}

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

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.project-form {
  margin-top: 26px;
  text-align: left;
}

.intake-flow {
  margin: 0;
  text-align: left;
}

.intake-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.intake-step {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.intake-step.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.intake-panels {
  margin-bottom: 22px;
}

.intake-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.intake-label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
}

.intake-panel h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.intake-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.choice-chip {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.choice-chip:hover {
  transform: translateY(-1px);
}

.choice-chip.is-selected {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.intake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.intake-summary {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.summary-item {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.summary-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.summary-item span {
  color: var(--muted);
  line-height: 1.55;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}

.project-modal[hidden] {
  display: none;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 13, 0.58);
  backdrop-filter: blur(12px);
}

.project-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 940px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(216, 255, 95, 0.14), transparent 24%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 90px rgba(8, 9, 13, 0.25);
}

.project-modal-header {
  max-width: 700px;
  padding-right: 48px;
}

.project-modal-header h2 {
  margin: 16px 0 0;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

.project-modal-header p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.project-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.project-modal-flow {
  margin-top: 28px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(8, 9, 13, 0.22);
  box-shadow: 0 0 0 4px rgba(20, 92, 255, 0.08);
}

.field textarea {
  resize: vertical;
  min-height: 152px;
}

.field-full {
  margin-top: 14px;
}

.field-hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status[data-state="loading"] {
  color: var(--muted);
}

.form-status[data-state="success"] {
  color: #0f7b3f;
}

.form-status[data-state="error"] {
  color: #bf1f35;
}

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

.reveal-delay-1 {
  transition-delay: 110ms;
}

.reveal-delay-2 {
  transition-delay: 210ms;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand,
  .header-cta {
    justify-self: center;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-stage {
    min-height: 470px;
  }

  .site-preview {
    inset: 28px 0 0;
  }

  .preview-left,
  .preview-right {
    display: none;
  }

  .project-wall,
  .case-layout,
  .bento-grid,
  .pricing-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .work-card-large,
  .bento-large {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: min(100% - 20px, 1180px);
    top: 10px;
  }

  .pill-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .pill-nav a {
    padding: 9px 11px;
    font-size: 0.86rem;
  }

  .hero,
  .showcase,
  .features,
  .pricing,
  .process,
  .cta,
  .logos {
    width: min(100% - 22px, 1180px);
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  .hero-stage {
    min-height: 390px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .intake-panel,
  .price-card {
    padding: 22px;
  }

  .project-modal-dialog {
    padding: 22px;
  }

  .site-preview {
    border-radius: 26px;
  }

  .preview-hero {
    padding: 28px 24px;
  }

  .preview-hero h2 {
    font-size: 2.65rem;
  }

  .preview-grid {
    grid-template-columns: 1fr;
    padding: 0 24px 26px;
  }

  .preview-grid span {
    height: 56px;
  }

  .work-card-large .browser-frame,
  .browser-frame {
    min-height: 300px;
  }

  .project-screenshot {
    height: 250px;
  }

  .case-copy {
    padding: 24px;
  }

  .case-screenshot {
    min-height: 320px;
  }

  .mock-store,
  .mock-dashboard {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .cta-card h2 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }
}
