:root {
  color-scheme: light;
  --bg: #f7f9ff;
  --bg-soft: #eef4ff;
  --text: #111827;
  --muted: #5b6475;
  --line: rgba(17, 24, 39, 0.12);
  --panel: rgba(255, 255, 255, 0.76);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --blue: #4f7cff;
  --cyan: #12b8d7;
  --pink: #ea4aaa;
  --green: #16b981;
  --orange: #f59e0b;
  --build-g1: #18C08A;
  --build-g2: #22D3E6;
  --build-accent: #0FA77A;
  --build-soft: rgba(15, 167, 122, 0.12);
  --navy: #0A1126;
  --shadow: 0 24px 80px rgba(56, 68, 103, 0.18);
  --soft-shadow: 0 18px 52px rgba(56, 68, 103, 0.09);
  --radius: 8px;
  --max: 1360px;
  --font-sans: "Google Sans", "Product Sans", "Aptos", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, ui-monospace, monospace;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 10%, rgba(18, 184, 215, 0.18), transparent 26rem),
    radial-gradient(circle at 88% 8%, rgba(234, 74, 170, 0.18), transparent 24rem),
    radial-gradient(circle at 50% 52%, rgba(24, 192, 138, 0.12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 44%, #f4fff9 100%);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  transform: translateZ(0);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, rgba(120, 167, 255, 0.08), rgba(73, 230, 255, 0.04), rgba(255, 122, 217, 0.08));
  opacity: 0.7;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
  color: #111827;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0;
}

p {
  color: #3f485a;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  background: var(--text);
  color: #ffffff;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--max));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  font-weight: 590;
}

.brand-lockup {
  display: block;
  width: auto;
  height: 2.5rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  border: 1px solid #111318;
  border-radius: 999px;
  padding: 0.66rem 1rem;
  background: #111318;
  color: #ffffff !important;
  font-weight: 650;
  box-shadow: 0 12px 28px rgba(17, 19, 24, 0.14);
}

.nav-cta::after {
  width: 0.58rem;
  height: 0.58rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg);
  transition: transform 160ms ease;
}

.nav-cta:hover {
  background: #050608;
  color: #ffffff !important;
  box-shadow: 0 14px 32px rgba(17, 19, 24, 0.2);
}

.nav-cta:hover::after {
  transform: translateX(2px) rotate(-45deg);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 42px;
  height: 42px;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  border-radius: 999px;
  background: currentColor;
}

.nav-links.is-open {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% + 0.35rem);
  display: grid;
  gap: 0.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.nav-links.is-open a {
  padding: 0.75rem 0.85rem;
}

.section,
.final-cta,
.site-footer,
.form-layout,
.form-hero {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2.6rem;
  place-items: center;
  width: min(100% - 1.5rem, 1720px);
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8.5rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 6% 0 auto;
  z-index: -1;
  height: min(78svh, 780px);
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72) 34%, transparent 70%),
    radial-gradient(circle at center, rgba(24, 192, 138, 0.14), transparent 58%);
  filter: blur(2px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 1180px;
  text-align: center;
}

.hero h1,
.form-hero h1 {
  max-width: 1180px;
  margin: 0 auto 1.4rem;
  font-size: clamp(3.15rem, 6.4vw, 6.15rem);
  font-weight: 400;
  line-height: 1.02;
}

.hero-lede,
.form-hero p {
  max-width: 780px;
  margin-inline: auto;
  color: #3f485a;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: var(--build-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: currentColor;
  content: "";
  box-shadow: 0 0 24px currentColor;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin: 2.2rem 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.15rem;
  color: var(--text);
  font-weight: 650;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary,
.button-gradient {
  min-height: 46px;
  border-color: #111318;
  padding: 0.72rem 1.15rem;
  background: #111318;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(17, 19, 24, 0.18);
}

.button-primary::after,
.button-gradient::after {
  width: 0.95rem;
  height: 0.95rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  opacity: 0.92;
  transform: translateX(-1px) rotate(-45deg);
  transition: transform 180ms ease;
}

.button-primary:hover,
.button-gradient:hover {
  border-color: #050608;
  background: #050608;
  box-shadow: 0 16px 34px rgba(17, 19, 24, 0.22);
}

.button-primary:hover::after,
.button-gradient:hover::after {
  transform: translateX(2px) rotate(-45deg);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(17, 24, 39, 0.24);
  background: rgba(255, 255, 255, 0.96);
}

.offer-pill {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
  border: 1px solid rgba(15, 167, 122, 0.2);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: rgba(255, 255, 255, 0.78);
  color: #3f485a;
  box-shadow: 0 12px 32px rgba(56, 68, 103, 0.08);
}

.offer-pill strong {
  color: var(--build-accent);
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 1040px);
  max-width: 1040px;
  min-width: 0;
}

.taskflow-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 12%, rgba(18, 184, 215, 0.16), transparent 16rem),
    radial-gradient(circle at 88% 8%, rgba(234, 74, 170, 0.14), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.78));
  box-shadow: 0 24px 80px rgba(56, 68, 103, 0.14);
}

.taskflow-window::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.taskflow-window > * {
  position: relative;
  z-index: 1;
}

.taskflow-topbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.09);
  padding: 0.82rem 1rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.taskflow-topbar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
}

.taskflow-topbar span:nth-child(1) {
  background: #e5484d;
}

.taskflow-topbar span:nth-child(2) {
  background: var(--orange);
}

.taskflow-topbar span:nth-child(3) {
  background: var(--build-g1);
}

.taskflow-topbar strong {
  margin-left: auto;
  color: #273244;
  font-weight: 500;
}

.taskflow-body {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1rem;
  padding: 1rem;
}

.taskflow-sidebar,
.queue-panel,
.chart-panel,
.taskflow-kpis div {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(56, 68, 103, 0.08);
}

.taskflow-sidebar {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 1rem;
}

.taskflow-sidebar img {
  margin-bottom: 1rem;
}

.taskflow-sidebar span {
  border-radius: var(--radius);
  padding: 0.64rem 0.72rem;
  color: #3f485a;
  font-weight: 560;
}

.taskflow-sidebar .active {
  background: linear-gradient(135deg, rgba(24, 192, 138, 0.15), rgba(34, 211, 230, 0.15));
  color: var(--build-accent);
}

.taskflow-main {
  display: grid;
  gap: 1rem;
}

.taskflow-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.taskflow-kpis div {
  padding: 1rem;
}

.taskflow-kpis span,
.panel-heading span,
.task-row b {
  color: var(--muted);
  font-size: 0.82rem;
}

.taskflow-kpis strong {
  display: block;
  margin-top: 0.3rem;
  color: #111827;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 0.95;
}

.queue-panel {
  padding: 1rem;
}

.panel-heading,
.task-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.panel-heading {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.09);
}

.panel-heading strong {
  font-size: 1rem;
  font-weight: 620;
}

.task-row {
  grid-template-columns: auto 1fr auto;
  padding: 0.72rem 0;
  color: #273244;
  font-size: 0.92rem;
}

.task-row + .task-row {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.task-row i {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--build-g1), var(--build-g2));
}

.chart-panel {
  display: flex;
  align-items: end;
  gap: 0.6rem;
  min-height: 104px;
  padding: 1rem;
}

.chart-panel span {
  flex: 1;
  min-width: 0;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--build-g2), var(--build-g1));
}

.chart-panel span:nth-child(1) { height: 38%; }
.chart-panel span:nth-child(2) { height: 62%; }
.chart-panel span:nth-child(3) { height: 50%; }
.chart-panel span:nth-child(4) { height: 78%; }
.chart-panel span:nth-child(5) { height: 58%; }

.section {
  padding: clamp(5.5rem, 8vw, 7rem) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.final-cta h2,
.form-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 400;
  line-height: 1.08;
}

.section-heading p {
  color: #3f485a;
  font-size: 1.05rem;
}

.card-grid,
.guide-grid,
.template-grid,
.audience-grid,
.example-grid,
.timeline-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.guide-card,
.brief-card,
.template-card,
.form-card,
.success-card,
.sticky-aside,
.example-column,
.final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.11);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(18, 184, 215, 0.11), transparent 12rem),
    radial-gradient(circle at 100% 0%, rgba(234, 74, 170, 0.08), transparent 11rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.74));
  box-shadow: var(--soft-shadow);
}

.feature-card::before,
.guide-card::before,
.brief-card::before,
.template-card::before,
.form-card::before,
.sticky-aside::before,
.final-cta::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.55;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.feature-card > *,
.guide-card > *,
.brief-card > *,
.template-card > *,
.form-card > *,
.sticky-aside > *,
.final-cta > * {
  position: relative;
  z-index: 1;
}

.feature-card,
.guide-card,
.template-card {
  min-height: 244px;
  padding: 1.15rem 1.25rem 1.3rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-card:hover,
.guide-card:hover,
.template-card:hover {
  border-color: rgba(15, 167, 122, 0.22);
  box-shadow: 0 22px 62px rgba(56, 68, 103, 0.14);
  transform: translateY(-2px);
}

.feature-card span,
.guide-card span,
.template-card span,
.example-column span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(79, 124, 255, 0.18);
  border-radius: 999px;
  padding: 0.5rem 0.66rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--build-accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1;
}

.feature-card h3,
.guide-card h3,
.template-card h3,
.brief-card h3,
.example-column h3 {
  margin: 2rem 0 0.65rem;
  font-size: 1.16rem;
  font-weight: 540;
  line-height: 1.2;
}

.feature-card p,
.guide-card p,
.template-card p,
.brief-card p,
.example-column p,
.example-column li {
  margin: 0;
  color: var(--muted);
}

.feature-card-accent {
  background:
    radial-gradient(circle at 15% 0%, rgba(24, 192, 138, 0.2), transparent 13rem),
    radial-gradient(circle at 100% 0%, rgba(34, 211, 230, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 255, 251, 0.82));
}

.not-for {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  align-items: center;
  margin-top: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(56, 68, 103, 0.06);
}

.not-for strong {
  color: #111827;
}

.not-for span {
  color: var(--muted);
}

.included-grid {
  display: grid;
  gap: 0.75rem;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(18, 184, 215, 0.08), transparent 12rem),
    radial-gradient(circle at 100% 0%, rgba(234, 74, 170, 0.08), transparent 12rem),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 52px rgba(56, 68, 103, 0.08);
}

.included-grid div {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.68);
}

.included-grid span {
  color: #273244;
  font-weight: 620;
}

.process-section {
  width: min(100% - 1.5rem, 1720px);
}

.process-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(1.25rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 12% 12%, rgba(34, 211, 230, 0.24), transparent 22rem),
    radial-gradient(circle at 82% 20%, rgba(234, 74, 170, 0.18), transparent 20rem),
    linear-gradient(135deg, #060816, #111827 58%, #0A1126);
  color: #ffffff;
  box-shadow: 0 30px 88px rgba(10, 17, 38, 0.28);
}

.process-shell::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.process-shell > * {
  position: relative;
  z-index: 1;
}

.process-intro h2,
.process-intro p,
.process-shell h3 {
  color: #ffffff;
}

.process-intro p {
  color: rgba(255, 255, 255, 0.72);
}

.process-steps {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.process-steps article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.process-steps span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999px;
  margin-bottom: 1.3rem;
  background: linear-gradient(135deg, var(--build-g1), var(--build-g2));
  color: #06111c;
  font-family: var(--font-mono);
  font-weight: 700;
}

.process-steps h3 {
  margin-bottom: 0.4rem;
  font-size: 1.06rem;
  font-weight: 540;
}

.process-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.timeline-card {
  border: 1px solid rgba(17, 24, 39, 0.11);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(56, 68, 103, 0.06);
}

.timeline-card strong {
  display: block;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 620;
}

.timeline-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--build-accent);
  font-weight: 700;
}

.brief-card {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.brief-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.brief-list li,
.brief-list div {
  display: grid;
  grid-template-columns: minmax(9.5rem, 0.34fr) 1fr;
  column-gap: 1rem;
  row-gap: 0.25rem;
  align-items: baseline;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  padding-top: 0.7rem;
  color: var(--muted);
}

.brief-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.brief-list strong {
  color: #273244;
  font-weight: 650;
}

.brief-list span {
  min-width: 0;
  color: #3f485a;
}

.template-card {
  color: inherit;
}

.template-card-dark {
  border-color: rgba(17, 24, 39, 0.16);
  background:
    radial-gradient(circle at 15% 0%, rgba(24, 192, 138, 0.32), transparent 14rem),
    radial-gradient(circle at 100% 0%, rgba(34, 211, 230, 0.26), transparent 14rem),
    linear-gradient(135deg, #060816, #111827 62%, #0A1126);
}

.template-card-dark h3,
.template-card-dark p {
  color: #ffffff;
}

.template-card-dark p {
  color: rgba(255, 255, 255, 0.74);
}

.final-cta {
  display: grid;
  gap: 1rem;
  align-items: center;
  margin-top: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(5rem, 8vw, 7rem);
  padding: clamp(1.5rem, 4vw, 2.3rem);
}

.final-cta p {
  max-width: 740px;
}

.final-cta-actions {
  justify-content: start;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(56, 68, 103, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: #1f2937;
  font-weight: 620;
}

.faq-list details p {
  margin: 0;
  padding: 0 1.1rem 1.05rem;
  color: var(--muted);
}

.site-footer {
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 3rem;
  color: var(--muted);
}

.site-footer .brand {
  margin-bottom: 1rem;
}

.site-footer p {
  max-width: 340px;
  margin: 0 0 0.9rem;
  color: #3f485a;
}

.footer-legal {
  color: var(--muted) !important;
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 1.15rem;
  color: var(--muted);
}

.footer-group {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  grid-auto-rows: max-content;
}

.footer-group span {
  color: #111827;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-group a {
  width: fit-content;
  transition: color 160ms ease;
}

.footer-group a:hover {
  color: var(--text);
}

.form-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(18, 184, 215, 0.18), transparent 26rem),
    radial-gradient(circle at 88% 8%, rgba(234, 74, 170, 0.16), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 48%, #f4fff9 100%);
}

.form-hero {
  padding: clamp(4rem, 8vw, 6.8rem) 0 clamp(1.8rem, 4vw, 3rem);
}

.form-hero h1,
.form-hero p {
  margin-inline: 0;
  text-align: left;
}

.form-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
  padding-bottom: clamp(5rem, 8vw, 7rem);
}

.form-stack {
  display: grid;
  gap: 1rem;
}

.form-card,
.success-card,
.sticky-aside {
  padding: clamp(1.15rem, 3vw, 1.55rem);
}

.form-card h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
}

.form-card > p {
  margin-bottom: 1.4rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field,
.field-full,
.chip-field,
.upload-field {
  display: grid;
  gap: 0.42rem;
}

label,
.chip-field legend,
.upload-field label {
  color: #111827;
  font-size: 0.9rem;
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.13);
  border-radius: var(--radius);
  padding: 0.82rem 0.9rem;
  background: rgba(255, 255, 255, 0.82);
  color: #111827;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15, 167, 122, 0.42);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 167, 122, 0.11);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: rgba(229, 72, 77, 0.48);
}

.chip-field {
  grid-column: 1 / -1;
  min-width: 0;
  border: 0;
  padding: 0;
  margin: 0;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  display: inline-flex;
  cursor: pointer;
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip span {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  padding: 0.6rem 0.78rem;
  background: rgba(255, 255, 255, 0.78);
  color: #3f485a;
  font-weight: 650;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.chip input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(15, 167, 122, 0.12);
}

.chip input:checked + span {
  border-color: rgba(15, 167, 122, 0.36);
  background: linear-gradient(135deg, rgba(24, 192, 138, 0.16), rgba(34, 211, 230, 0.16));
  color: var(--build-accent);
}

.upload-box {
  border: 1px dashed rgba(15, 167, 122, 0.38);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
}

.upload-box input {
  border: 0;
  padding: 0;
  background: transparent;
}

.upload-hint {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.upload-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.upload-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: var(--radius);
  padding: 0.62rem 0.72rem;
  background: rgba(255, 255, 255, 0.72);
}

.upload-list span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  padding-top: 0.4rem;
}

.success-card {
  display: none;
  background:
    radial-gradient(circle at 15% 0%, rgba(24, 192, 138, 0.24), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 255, 251, 0.82));
}

.success-card.is-visible {
  display: block;
}

.success-ref {
  display: inline-flex;
  margin-top: 0.6rem;
  border-radius: 999px;
  padding: 0.48rem 0.66rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--build-accent);
  font-family: var(--font-mono);
  font-weight: 700;
}

.sticky-aside {
  display: grid;
  gap: 1rem;
}

.sticky-aside h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 540;
}

.section-nav {
  display: grid;
  gap: 0.25rem;
}

.section-nav a {
  display: block;
  border-radius: var(--radius);
  padding: 0.55rem 0.65rem;
  color: var(--muted);
  font-weight: 650;
}

.section-nav a.is-active {
  background: rgba(15, 167, 122, 0.1);
  color: var(--build-accent);
}

.aside-offer {
  border: 1px solid rgba(15, 167, 122, 0.2);
  border-radius: var(--radius);
  padding: 0.9rem;
  background: linear-gradient(135deg, rgba(24, 192, 138, 0.13), rgba(34, 211, 230, 0.1));
}

.aside-offer strong {
  display: block;
  color: #111827;
  font-size: 1rem;
  font-weight: 650;
}

.aside-offer p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

[hidden] {
  display: none !important;
}

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

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

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

@media (min-width: 720px) {
  .service-grid,
  .template-grid,
  .timeline-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-grid,
  .audience-grid,
  .example-grid,
  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .brief-card {
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.75fr);
  }

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

  .field-full,
  .upload-field {
    grid-column: 1 / -1;
  }

  .final-cta {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 940px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .form-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .sticky-aside {
    position: sticky;
    top: 92px;
  }

  .site-footer {
    grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 5.5rem);
    align-items: start;
  }

  .footer-links {
    justify-self: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem clamp(2rem, 5vw, 4rem);
  }
}

@media (min-width: 1120px) {
  .footer-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .audience-grid,
  .example-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

@media (max-width: 719px) {
  html {
    scroll-padding-top: 88px;
  }

  .hero {
    min-height: auto;
    padding-top: 3.6rem;
  }

  .hero h1,
  .form-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .taskflow-body {
    grid-template-columns: 1fr;
  }

  .taskflow-sidebar {
    display: flex;
    overflow-x: auto;
  }

  .taskflow-sidebar img {
    margin: 0;
    width: 34px;
  }

  .taskflow-kpis {
    grid-template-columns: 1fr;
  }

  .brief-list li,
  .brief-list div {
    grid-template-columns: 1fr;
  }

  .form-hero {
    padding-top: 3.4rem;
  }
}

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