/* =========================
   Warm freelance landing
   ========================= */

:root {
  --font-sans:
    "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, ui-serif, serif;
  --cream: #fff7ea;
  --cream-2: #f8ead8;
  --sand: #ead3b7;
  --ink: #2f241d;
  --muted: #7f6656;
  --muted-2: #a1826e;
  --terracotta: #d96c3f;
  --terracotta-dark: #ae4d2d;
  --peach: #ffb88c;
  --yellow: #ffd166;
  --mint: #95d5b2;
  --rose: #f6a6a6;
  --blue: #7fb7be;
  --card: rgba(255, 255, 255, 0.62);
  --card-strong: rgba(255, 255, 255, 0.84);
  --border: rgba(80, 50, 30, 0.14);
  --shadow: 0 26px 70px rgba(103, 61, 35, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(255, 184, 140, 0.45),
      transparent 28rem
    ),
    radial-gradient(
      circle at 86% 4%,
      rgba(255, 209, 102, 0.35),
      transparent 26rem
    ),
    radial-gradient(
      circle at 78% 42%,
      rgba(149, 213, 178, 0.28),
      transparent 30rem
    ),
    linear-gradient(180deg, #fff8ed 0%, #f7e8d5 54%, #fff7ea 100%);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  background-size:
    120% 120%,
    120% 120%,
    120% 120%,
    100% 100%;
  animation: pageGlow 18s ease-in-out infinite alternate;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 0 36%,
      rgba(255, 255, 255, 0.2) 42%,
      transparent 49%
    ),
    linear-gradient(
      24deg,
      transparent 0 58%,
      rgba(217, 108, 63, 0.08) 63%,
      transparent 70%
    );
  opacity: 0.55;
  transform: translate3d(0, 0, 0);
}

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

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

button {
  color: inherit;
}

::selection {
  background: rgba(217, 108, 63, 0.28);
}

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

.contact-form .btn {
  gap: 10px;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.82;
  transform: none;
}

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 250, 243, 0.45);
  border-top-color: #fffaf3;
  border-radius: 999px;
  animation: contactLoaderSpin 0.75s linear infinite;
}

.btn.is-loading .btn-loader {
  display: inline-block;
}

.form-feedback {
  min-height: 22px;
  margin-top: -2px;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 750;
  text-align: left;
}

.form-feedback.is-success,
.form-feedback.is-error {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 13px;
  border-radius: 16px;
  border: 1px solid;
}

.form-feedback.is-success {
  color: #26734d;
  border-color: rgba(38, 115, 77, 0.2);
  background: rgba(149, 213, 178, 0.18);
}

.form-feedback.is-error {
  color: #b2332b;
  border-color: rgba(178, 51, 43, 0.2);
  background: rgba(246, 166, 166, 0.18);
}

.form-feedback-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fffaf3;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.form-feedback.is-success .form-feedback-icon {
  background: #26734d;
}

.form-feedback.is-error .form-feedback-icon {
  background: #b2332b;
}

@keyframes contactLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  z-index: 90;
  background: linear-gradient(
    90deg,
    var(--terracotta),
    var(--yellow),
    var(--mint)
  );
}

.cursor-soft {
  position: fixed;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(217, 108, 63, 0.38);
  background: rgba(255, 184, 140, 0.12);
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  display: none;
  mix-blend-mode: multiply;
  transition:
    width 0.2s var(--ease),
    height 0.2s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.cursor-soft.active {
  width: 58px;
  height: 58px;
  background: rgba(255, 209, 102, 0.18);
}

@media (pointer: fine) {
  .cursor-soft {
    display: block;
  }
}

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

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  transition:
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
}

.site-header.scrolled {
  background: rgba(255, 247, 234, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(80, 50, 30, 0.1);
  box-shadow: 0 10px 40px rgba(103, 61, 35, 0.08);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav .btn {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 18px;
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(47, 36, 29, 0.18);
}

.site-header.scrolled .nav .btn {
  box-shadow: 0 12px 28px rgba(47, 36, 29, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px 16px 16px 6px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 28px;
  font-style: normal;
  font-weight: 750;
  box-shadow: 8px 8px 0 rgba(217, 108, 63, 0.22);
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.brand:hover .brand-mark {
  transform: translateY(-2px) rotate(-4deg);
  box-shadow: 6px 10px 0 rgba(217, 108, 63, 0.2);
}

.brand-text {
  transform: translateY(-1px);
}

/* Buttons */

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(
    110deg,
    transparent 0 34%,
    rgba(255, 255, 255, 0.18) 43%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0.16) 57%,
    transparent 68%
  );
  opacity: 0;
  transform: translateX(-115%) skewX(-18deg);
  transition:
    transform 0.85s var(--ease-spring),
    opacity 0.35s var(--ease);
}

.btn-arrow {
  display: inline-flex;
  margin-left: 7px;
  transition: transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-3px) rotate(-0.4deg);
}

.btn:hover::after {
  opacity: 1;
  transform: translateX(115%) skewX(-18deg);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--terracotta);
  color: #fffaf3;
  box-shadow: 0 18px 36px rgba(217, 108, 63, 0.28);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 24px 48px rgba(217, 108, 63, 0.36);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.85);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--terracotta-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* Hero */

.hero {
  min-height: min(920px, 100svh);
  padding: 150px 0 90px;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 64px;
}

.hello-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 42px rgba(103, 61, 35, 0.07);
}

.hello-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(149, 213, 178, 0.22);
  animation: pulseDot 2.8s ease-in-out infinite;
}

.hero-title {
  max-width: 800px;
  font-family: var(--font-display);
  font-size: clamp(52px, 7.6vw, 90px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 750;
}

.hero-lead {
  max-width: 660px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.7;
  letter-spacing: 0;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero art */

.hero-art {
  position: relative;
  min-height: 650px;
  perspective: 1200px;
}

.hero-art.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.sun-shape {
  position: absolute;
  top: 0;
  right: 16%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 20px 70px rgba(255, 209, 102, 0.42);
  animation: float 7s ease-in-out infinite alternate;
}

.scribble {
  position: absolute;
  border: 3px solid rgba(217, 108, 63, 0.35);
  border-radius: 46% 54% 62% 38% / 41% 35% 65% 59%;
  transform: rotate(-12deg);
}

.scribble-one {
  width: 180px;
  height: 90px;
  left: -12px;
  top: 80px;
}

.scribble-two {
  width: 120px;
  height: 70px;
  right: 8px;
  bottom: 130px;
  border-color: rgba(127, 183, 190, 0.45);
  transform: rotate(18deg);
}

.desk-card {
  position: absolute;
  inset: 72px 40px 40px 20px;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transform: rotate(1.2deg);
  transform-style: preserve-3d;
  transition:
    transform 0.45s var(--ease-spring),
    box-shadow 0.45s var(--ease-spring);
  animation: heroCardDrift 9s ease-in-out infinite alternate;
}

.desk-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.34) 45%,
    transparent 56%
  );
  transform: translateX(-35%) rotate(8deg);
  animation: surfaceSheen 7s ease-in-out infinite;
}

.browser-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  border-bottom: 1px solid var(--border);
}

.browser-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--peach);
}

.browser-top span:nth-child(2) {
  background: var(--yellow);
}

.browser-top span:nth-child(3) {
  background: var(--mint);
}

.browser-top span {
  animation: dotWake 4.8s ease-in-out infinite;
}

.browser-top span:nth-child(2) {
  animation-delay: 0.2s;
}

.browser-top span:nth-child(3) {
  animation-delay: 0.4s;
}

.website-mock {
  margin: 22px;
  min-height: 490px;
  border-radius: 32px;
  background: #fffaf3;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.website-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(255, 184, 140, 0.26),
      transparent 16rem
    ),
    radial-gradient(
      circle at 84% 86%,
      rgba(149, 213, 178, 0.24),
      transparent 18rem
    );
}

.mock-nav,
.mock-content,
.mock-cards {
  position: relative;
}

.mock-nav {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
}

.mock-logo {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--ink);
  animation: softSpin 8s ease-in-out infinite alternate;
}

.mock-menu {
  display: flex;
  gap: 8px;
}

.mock-menu span {
  width: 48px;
  height: 10px;
  border-radius: 999px;
  background: rgba(47, 36, 29, 0.12);
}

.mock-content {
  padding: 36px 26px 20px;
}

.mock-badge {
  width: 155px;
  height: 26px;
  border-radius: 999px;
  background: rgba(217, 108, 63, 0.18);
  border: 1px solid rgba(217, 108, 63, 0.18);
  margin-bottom: 22px;
}

.mock-title {
  display: grid;
  gap: 12px;
  max-width: 380px;
}

.mock-title span {
  height: 28px;
  border-radius: 999px;
  background: var(--ink);
  transform-origin: left center;
  animation: lineBreathe 5.6s ease-in-out infinite;
}

.mock-title span:nth-child(2) {
  width: 82%;
  animation-delay: 0.18s;
}

.mock-title span:nth-child(3) {
  width: 64%;
  background: var(--terracotta);
  animation-delay: 0.34s;
}

.mock-text {
  display: grid;
  gap: 9px;
  margin-top: 24px;
  max-width: 340px;
}

.mock-text span {
  height: 10px;
  border-radius: 999px;
  background: rgba(47, 36, 29, 0.13);
  animation: lineBreathe 6.2s ease-in-out infinite;
}

.mock-text span:nth-child(2) {
  width: 76%;
  animation-delay: 0.25s;
}

.mock-buttons {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.mock-buttons span {
  width: 122px;
  height: 42px;
  border-radius: 999px;
  background: var(--terracotta);
}

.mock-buttons span:nth-child(2) {
  width: 92px;
  background: rgba(47, 36, 29, 0.1);
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px 26px 26px;
}

.mock-cards div {
  height: 105px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  animation: cardFloat 6.5s ease-in-out infinite alternate;
}

.mock-cards div:nth-child(2) {
  animation-delay: 0.45s;
}

.mock-cards div:nth-child(3) {
  animation-delay: 0.9s;
}

.note-card,
.coffee-card {
  position: absolute;
  z-index: 4;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 18px 46px rgba(103, 61, 35, 0.16);
  backdrop-filter: blur(18px);
  transform: translateZ(0);
}

.note-card {
  left: -10px;
  bottom: 70px;
  max-width: 270px;
  padding: 20px;
  transform: rotate(-3deg);
}

.note-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--terracotta-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.note-card p {
  color: var(--muted);
  font-size: 14px;
}

.coffee-card {
  right: 6px;
  top: 150px;
  max-width: 175px;
  padding: 16px;
  transform: rotate(4deg);
}

.coffee-card span {
  font-size: 30px;
}

.coffee-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@supports (-moz-appearance: none) {
  .note-card,
  .coffee-card {
    background: rgba(255, 250, 243, 0.96);
    backdrop-filter: none;
  }
}

@keyframes float {
  to {
    transform: translateY(18px) rotate(8deg);
  }
}

/* Marquee */

.marquee {
  --marquee-gap: 18px;
  overflow: hidden;
  padding: 16px 0;
  border-block: 1px solid var(--border);
  background: rgba(255, 250, 243, 0.48);
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 9%,
    #000 91%,
    transparent
  );
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  padding-right: var(--marquee-gap);
}

.marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(80, 50, 30, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}

.marquee-group span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.7;
}

.marquee:hover .marquee-group span {
  background: rgba(255, 255, 255, 0.68);
}

.marquee-group span:nth-child(3n + 2)::before {
  background: var(--mint);
}

.marquee-group span:nth-child(3n)::before {
  background: var(--blue);
}

@keyframes marquee {
  to {
    transform: translateX(-25%);
  }
}

/* Sections */

.section {
  padding: 100px 0;
  position: relative;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--terracotta-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: left center;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 650;
}

.section-heading p,
.approach-copy p,
.demo-copy p,
.honesty-card p,
.contact-copy p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0;
}

/* Services */

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

.service-card {
  position: relative;
  min-height: 380px;
  padding: 28px;
  border-radius: 34px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 18px 52px rgba(103, 61, 35, 0.08);
  overflow: hidden;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -46px;
  bottom: -46px;
  border-radius: 50%;
  background: rgba(255, 184, 140, 0.26);
}

.service-card:nth-child(2)::after {
  background: rgba(149, 213, 178, 0.26);
}

.service-card:nth-child(3)::after {
  background: rgba(127, 183, 190, 0.24);
}

.service-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  background: var(--card-strong);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 20px;
  background: var(--ink);
  color: var(--cream);
  font-size: 24px;
  box-shadow: 8px 8px 0 rgba(217, 108, 63, 0.18);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.service-card li {
  list-style: none;
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.service-card li::before {
  content: "✓";
  color: var(--terracotta);
  font-weight: 800;
}

/* Approach */

.approach-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: start;
}

.approach-copy {
  position: sticky;
  top: 120px;
}

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

.step {
  --mx: 50%;
  --my: 50%;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid var(--border);
  box-shadow: 0 14px 42px rgba(103, 61, 35, 0.07);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s var(--ease-spring),
    box-shadow 0.28s var(--ease-spring),
    background 0.28s var(--ease);
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.72),
    transparent 13rem
  );
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.step:hover {
  transform: translateY(-4px);
  background: rgba(255, 250, 243, 0.88);
  box-shadow: 0 18px 52px rgba(103, 61, 35, 0.1);
}

.step:hover::before {
  opacity: 1;
}

.step > * {
  position: relative;
}

.step > span {
  width: 58px;
  height: 58px;
  border-radius: 20px 20px 20px 7px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.34), transparent),
    var(--terracotta);
  color: white;
  font-weight: 800;
  box-shadow: 7px 7px 0 rgba(217, 108, 63, 0.16);
}

.step h3 {
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 800;
  margin-bottom: 5px;
}

.step p {
  color: var(--muted);
  font-size: 15px;
}

/* Demo */

.demo-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 46px;
  align-items: center;
}

.demo-panel {
  --mx: 50%;
  --my: 50%;
  position: relative;
  padding: 22px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.demo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.76),
    transparent 15rem
  );
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.demo-panel:hover::before {
  opacity: 1;
}

.demo-panel > * {
  position: relative;
}

.demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.demo-tab {
  position: relative;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 9px 14px 9px 10px;
  cursor: pointer;
  color: var(--muted);
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.demo-tab-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(47, 36, 29, 0.08);
  color: var(--terracotta-dark);
  flex: 0 0 auto;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}

.demo-tab-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-tab:hover,
.demo-tab.active {
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-2px);
}

.demo-tab.active .demo-tab-icon,
.demo-tab:hover .demo-tab-icon {
  background: rgba(255, 247, 234, 0.16);
  color: var(--cream);
}

.demo-window {
  min-height: 0;
  aspect-ratio: 1.28;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(255, 184, 140, 0.26),
      transparent 16rem
    ),
    radial-gradient(
      circle at 84% 86%,
      rgba(149, 213, 178, 0.22),
      transparent 18rem
    ),
    #fffaf3;
  position: relative;
  display: grid;
  grid-template-rows: 52px minmax(0, 1fr);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transition:
    background 0.45s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease-spring);
}

.demo-window::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.24) 48%,
    transparent 58%
  );
  opacity: 0.7;
  transform: translateX(-45%) rotate(10deg);
  animation: surfaceSheen 8.5s ease-in-out infinite;
}

.demo-window.demo-app {
  grid-template-rows: minmax(0, 1fr);
  border-color: transparent;
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(149, 213, 178, 0.26),
      transparent 15rem
    ),
    radial-gradient(
      circle at 82% 84%,
      rgba(255, 184, 140, 0.2),
      transparent 17rem
    ),
    rgba(255, 250, 243, 0.38);
}

.demo-window.demo-app .demo-window-top {
  display: none;
}

.demo-window.demo-tool {
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(127, 183, 190, 0.22),
      transparent 15rem
    ),
    radial-gradient(
      circle at 86% 82%,
      rgba(255, 209, 102, 0.2),
      transparent 17rem
    ),
    #fffaf3;
}

.demo-window-top {
  height: 52px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
}

.demo-window-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rose);
}

.demo-window-top span:nth-child(2) {
  background: var(--yellow);
}

.demo-window-top span:nth-child(3) {
  background: var(--mint);
}

.demo-preview {
  display: none;
  min-height: 0;
  height: 100%;
  padding: clamp(22px, 4vw, 34px);
  position: relative;
  overflow: hidden;
}

.demo-window.demo-site .demo-preview-site,
.demo-window.demo-app .demo-preview-app,
.demo-window.demo-tool .demo-preview-tool {
  display: grid;
  animation: previewIn 0.48s var(--ease-spring) both;
}

/* Honesty */

.honesty {
  padding-top: 30px;
}

.honesty-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 42px;
  background:
    radial-gradient(
      circle at 15% 8%,
      rgba(255, 184, 140, 0.34),
      transparent 24rem
    ),
    var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.honesty-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(255, 247, 234, 0.16),
    transparent 18rem
  );
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.honesty-card:hover::after {
  opacity: 1;
}

.honesty-card > * {
  position: relative;
  z-index: 1;
}

.honesty-card .eyebrow,
.honesty-card p {
  color: rgba(255, 247, 234, 0.76);
}

.honesty-card .eyebrow::before {
  background: rgba(255, 247, 234, 0.76);
}

.honesty-card p {
  font-size: 20px;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

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

.faq-item {
  --mx: 50%;
  --my: 50%;
  position: relative;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-spring),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.74),
    transparent 13rem
  );
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.faq-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(103, 61, 35, 0.07);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item > * {
  position: relative;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 21px 22px;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  letter-spacing: 0;
}

.faq-question span:last-child {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(217, 108, 63, 0.12);
  color: var(--terracotta-dark);
  font-weight: 800;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: var(--cream);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.faq-answer p {
  padding: 0 22px 22px;
  color: var(--muted);
}

/* Contact */

.contact-section {
  padding-top: 60px;
}

.contact-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 42px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(149, 213, 178, 0.3),
      transparent 24rem
    ),
    rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.58),
    transparent 18rem
  );
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card > * {
  position: relative;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.9);
  color: var(--ink);
  padding: 16px 17px;
  outline: none;
  transition:
    box-shadow 0.2s var(--ease),
    border-color 0.2s var(--ease),
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(217, 108, 63, 0.5);
  box-shadow: 0 0 0 5px rgba(217, 108, 63, 0.12);
  background: #fffaf3;
  transform: translateY(-1px);
}

/* Footer */

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner div {
  display: flex;
  gap: 16px;
}

.footer-inner a:hover {
  color: var(--terracotta-dark);
}

/* Animation */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    filter 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.steps .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.steps .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.steps .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

@keyframes pageGlow {
  to {
    background-position:
      6% 4%,
      92% 10%,
      72% 46%,
      0 0;
  }
}

@keyframes pulseDot {
  50% {
    box-shadow: 0 0 0 9px rgba(149, 213, 178, 0.12);
    transform: scale(0.86);
  }
}

@keyframes titleMark {
  to {
    transform: rotate(4deg) translateY(-5px);
    box-shadow: 6px 12px 0 rgba(217, 108, 63, 0.18);
  }
}

@keyframes heroCardDrift {
  to {
    transform: rotate(0.4deg) translate3d(0, -6px, 0);
  }
}

@keyframes surfaceSheen {
  0%,
  46% {
    transform: translateX(-45%) rotate(10deg);
  }

  74%,
  100% {
    transform: translateX(45%) rotate(10deg);
  }
}

@keyframes dotWake {
  50% {
    transform: translateY(-2px);
    opacity: 0.72;
  }
}

@keyframes softSpin {
  to {
    border-radius: 18px 18px 18px 6px;
    transform: rotate(-6deg);
  }
}

@keyframes lineBreathe {
  50% {
    transform: scaleX(0.92);
    opacity: 0.82;
  }
}

@keyframes cardFloat {
  to {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(103, 61, 35, 0.08);
  }
}

@keyframes previewIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes phoneFloat {
  to {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 30px 72px rgba(103, 61, 35, 0.18);
  }
}

@keyframes mobileCardPulse {
  50% {
    transform: translateY(-3px);
    filter: saturate(1.08);
  }
}

@keyframes navPulse {
  50% {
    background: rgba(217, 108, 63, 0.34);
  }
}

@keyframes dashboardSettle {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
}

@keyframes statRise {
  to {
    transform: translateY(-4px);
  }
}

/* Responsive */

@media (max-width: 1060px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .hero-grid,
  .approach-grid,
  .demo-grid,
  .honesty-card,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 78px;
  }

  .hero-grid,
  .demo-grid,
  .approach-grid,
  .faq-grid,
  .contact-card {
    gap: 34px;
  }

  .hero-copy,
  .section-heading,
  .approach-copy,
  .demo-copy,
  .contact-copy {
    max-width: 760px;
  }

  .approach-copy {
    position: relative;
    top: auto;
  }

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

  .hero-art {
    min-height: 560px;
    max-width: 760px;
    width: 100%;
  }

  .section {
    padding: 92px 0;
  }

  .site-header.scrolled {
    background: rgba(255, 247, 234, 0.9);
  }
}

@media (max-width: 860px) {
  .nav {
    height: 74px;
    gap: 14px;
  }

  .nav .btn {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 13px;
    box-shadow: 0 10px 24px rgba(47, 36, 29, 0.15);
  }

  .hero {
    padding: 112px 0 64px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-title {
    max-width: 720px;
    font-size: clamp(46px, 11vw, 76px);
  }

  .hero-lead {
    max-width: 620px;
    margin-top: 22px;
    font-size: 18px;
  }

  .hero-art {
    min-height: auto;
    max-width: none;
    display: grid;
    gap: 12px;
  }

  .desk-card {
    position: relative;
    inset: auto;
    transform: none;
    animation: none;
    order: 1;
    border-radius: 30px;
  }

  .website-mock {
    min-height: 390px;
    border-radius: 24px;
  }

  .mock-cards div {
    height: 82px;
  }

  .note-card,
  .coffee-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    max-width: none;
    margin-top: 14px;
    transform: none;
  }

  .note-card,
  .coffee-card,
  .demo-panel,
  .contact-card,
  .honesty-card {
    border-radius: 28px;
  }

  .note-card,
  .coffee-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: center;
    padding: 16px;
  }

  .coffee-card {
    order: 2;
  }

  .note-card {
    order: 3;
  }

  .note-card span,
  .coffee-card span {
    margin: 0;
  }

  .coffee-card p,
  .note-card p {
    margin: 0;
  }

  .sun-shape,
  .scribble {
    display: none;
  }

  .mock-cards {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .demo-panel {
    padding: 18px;
  }

  .demo-window {
    aspect-ratio: 1.45;
    border-radius: 24px;
    grid-template-rows: 46px minmax(0, 1fr);
  }

  .demo-window-top {
    height: 46px;
    padding-inline: 14px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    font-size: 18px;
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px 14px 14px 5px;
    font-size: 24px;
  }

  .nav .btn {
    min-width: 82px;
    padding-inline: 13px;
    font-size: 0;
  }

  .nav .btn::before {
    content: "Ton projet";
    font-size: 13px;
  }

  .hello-pill {
    margin-bottom: 18px;
    font-size: 13px;
    padding: 8px 12px;
  }

  .hero-title {
    font-size: clamp(40px, 15vw, 60px);
    line-height: 0.98;
  }

  .hero-title::after {
    width: 0.28em;
    height: 0.28em;
    box-shadow: 6px 6px 0 rgba(217, 108, 63, 0.22);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .section-heading p,
  .approach-copy p,
  .demo-copy p,
  .honesty-card p,
  .contact-copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions .btn,
.contact-form .btn {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    justify-content: space-between;
  }

  .section {
    padding: 70px 0;
  }

  .marquee {
    --marquee-gap: 10px;
    padding: 12px 0;
  }

  .marquee-track {
    animation-duration: 26s;
  }

  .marquee-group span {
    padding: 7px 10px;
    font-size: 13px;
  }

  .field-row,
  .step {
    grid-template-columns: 1fr;
  }

  .step {
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 250, 243, 0.82);
  }

  .step > span {
    width: 48px;
    height: 48px;
    border-radius: 16px 16px 16px 6px;
    box-shadow: 5px 5px 0 rgba(217, 108, 63, 0.14);
  }

  .website-mock {
    margin: 14px;
    min-height: 330px;
  }

  .hero-art {
    margin-top: 6px;
  }

  .desk-card {
    box-shadow: 0 18px 46px rgba(103, 61, 35, 0.12);
  }

  .browser-top {
    height: 44px;
    padding: 0 16px;
  }

  .browser-top span {
    width: 10px;
    height: 10px;
  }

  .mock-nav {
    height: 56px;
    padding: 14px;
  }

  .mock-logo {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .mock-content {
    padding: 24px 18px 16px;
  }

  .mock-badge {
    width: 120px;
    height: 20px;
    margin-bottom: 18px;
  }

  .mock-title {
    gap: 10px;
  }

  .mock-title span {
    height: 22px;
  }

  .mock-text {
    margin-top: 18px;
  }

  .mock-buttons {
    margin-top: 22px;
  }

  .mock-buttons span {
    width: 104px;
    height: 34px;
  }

  .mock-buttons span:nth-child(2) {
    width: 74px;
  }

  .note-card,
  .coffee-card {
    box-shadow: 0 12px 30px rgba(103, 61, 35, 0.1);
  }

  .mock-menu span:nth-child(2),
  .mock-menu span:nth-child(3) {
    display: none;
  }

  .demo-preview {
    padding: 16px;
  }

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

  .demo-tab {
    min-width: 0;
    padding: 8px;
    font-size: 12px;
    text-align: center;
    justify-content: center;
    border-radius: 16px;
  }

  .demo-tab-icon {
    width: 22px;
    height: 22px;
  }

  .demo-tab-icon svg {
    width: 14px;
    height: 14px;
  }

  .honesty {
    padding-top: 0;
  }

  .honesty-card,
  .contact-card {
    padding: 24px;
    border-radius: 26px;
  }

  .honesty-card {
    gap: 18px;
  }

  .faq-question {
    padding: 18px;
    gap: 12px;
    align-items: flex-start;
  }

  .faq-question span:last-child {
    width: 28px;
    height: 28px;
    border-radius: 10px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    border-radius: 16px;
    padding: 14px 15px;
  }

  .footer-inner,
  .footer-inner div {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .nav {
    height: 68px;
  }

  .brand-text {
    /* max-width: 128px; */
    overflow: hidden;
    /* text-overflow: ellipsis; */
    white-space: nowrap;
  }

  .nav .btn {
    min-width: 76px;
    min-height: 40px;
    padding-inline: 11px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-title {
    font-size: clamp(36px, 15vw, 50px);
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    min-height: 50px;
    padding: 13px 18px;
  }

  .note-card,
  .coffee-card {
    display: none;
  }

  .desk-card,
  .demo-panel,
  .demo-window,
  .contact-card,
  .honesty-card {
    border-radius: 22px;
  }

  .website-mock {
    margin: 10px;
    min-height: 230px;
  }

  .mock-content {
    padding: 18px 16px 14px;
  }

  .mock-nav {
    height: 46px;
    padding: 11px 12px;
  }

  .mock-logo {
    width: 28px;
    height: 28px;
    border-radius: 10px;
  }

  .mock-badge {
    width: 96px;
    height: 16px;
    margin-bottom: 14px;
  }

  .mock-title span {
    height: 18px;
  }

  .mock-text {
    gap: 7px;
    margin-top: 14px;
  }

  .mock-text span {
    height: 8px;
  }

  .mock-buttons {
    gap: 8px;
    margin-top: 18px;
  }

  .mock-buttons span {
    width: 86px;
    height: 30px;
  }

  .mock-buttons span:nth-child(2) {
    width: 58px;
  }

  .mock-cards {
    display: none;
  }

  .demo-window {
    aspect-ratio: 1.18;
    min-height: 0;
    grid-template-rows: 42px minmax(0, 1fr);
  }

  .demo-window-top {
    height: 42px;
  }

  .demo-window-top span {
    width: 10px;
    height: 10px;
  }

  .demo-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .demo-tab {
    gap: 5px;
    padding: 8px 5px;
    font-size: 11px;
    line-height: 1;
    justify-content: center;
  }

  .demo-tab-icon {
    width: 20px;
    height: 20px;
  }

  .contact-form textarea {
    min-height: 120px;
  }
}

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

  .cursor-soft {
    display: none !important;
  }

  .marquee-track {
    transform: none !important;
  }
}

.legal-page {
  min-height: 100svh;
  padding-top: 150px;
}

.legal-page .hero-title {
  font-size: clamp(48px, 8vw, 88px);
}

.legal-list {
  max-width: 980px;
}

.legal-list .faq-question {
  cursor: default;
}

/* Responsive refinements */

@media (max-width: 1060px) and (min-width: 721px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
    border-radius: 28px;
  }

  .service-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .service-icon {
    margin-bottom: 30px;
  }
}

@media (max-width: 860px) {
  .site-header {
    background: rgba(255, 247, 234, 0.76);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(80, 50, 30, 0.08);
  }

  .hero {
    padding-bottom: 54px;
  }

  .hero-copy {
    text-wrap: balance;
  }

  .hero-actions {
    max-width: 560px;
  }

  .service-grid {
    margin-bottom: 40px;
  }

  .service-card:hover {
    transform: none;
  }

  .demo-copy {
    order: -1;
  }

  .demo-panel {
    width: 100%;
    max-width: 760px;
  }

  .contact-card {
    padding: clamp(24px, 6vw, 40px);
  }

  .legal-page {
    padding-top: 118px;
  }
}

@media (max-width: 720px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card,
  .service-card:nth-child(3) {
    grid-column: auto;
  }

  .service-card {
    min-height: 0;
    padding: 22px;
    border-radius: 24px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 16px 16px 16px 6px;
    font-size: 16px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card ul {
    margin-top: 18px;
    gap: 8px;
  }

  .service-card li {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 98px;
  }

  .hero-title {
    max-width: 11ch;
  }

  .hero-title::after {
    vertical-align: 0.06em;
  }

  .hero-lead {
    max-width: 34rem;
  }

  .hero-actions .btn {
    min-height: 52px;
  }

  .demo-panel {
    padding: 14px;
  }

  .demo-tabs {
    position: relative;
    z-index: 3;
  }

  .demo-tab {
    min-height: 44px;
  }

  .contact-card {
    gap: 24px;
  }

  .contact-form label {
    font-size: 12px;
  }

  .footer-inner {
    gap: 14px;
  }

  .footer-inner div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .footer-inner a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
  }

  .legal-page .hero-title {
    max-width: none;
    font-size: clamp(38px, 12vw, 54px);
  }
}

@media (max-width: 460px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero-title {
    max-width: 11ch;
    font-size: clamp(34px, 14vw, 40px);
  }

  .hero-lead {
    font-size: 15.5px;
  }

  .hello-pill {
    max-width: 100%;
  }

  .service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .demo-preview {
    padding: 12px;
  }

  .demo-tab span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .contact-card,
  .honesty-card {
    padding: 20px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .footer-inner div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-page {
    padding-top: 98px;
  }
}

/* Demo panel polish */

.demo-panel {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.demo-panel::after {
  display: none;
}

.demo-panel > * {
  z-index: 1;
}

.demo-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 460px);
  margin: 0 0 18px;
  padding: 5px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 243, 0.62),
    rgba(255, 255, 255, 0.34)
  );
  border: 1px solid rgba(80, 50, 30, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 10px 26px rgba(103, 61, 35, 0.06);
  position: relative;
  isolation: isolate;
}

.demo-tabs::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 5px;
  left: 5px;
  width: calc((100% - 10px) / 3);
  height: calc(100% - 10px);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(47, 36, 29, 0.96),
    rgba(68, 50, 39, 0.92)
  );
  box-shadow:
    0 12px 28px rgba(47, 36, 29, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateX(calc(var(--demo-active, 0) * 100%));
  transition: transform 0.38s var(--ease-spring);
}

.demo-tabs[data-active="0"] {
  --demo-active: 0;
}

.demo-tabs[data-active="1"] {
  --demo-active: 1;
}

.demo-tabs[data-active="2"] {
  --demo-active: 2;
}

.demo-tab {
  justify-content: center;
  min-width: 0;
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 999px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  z-index: 1;
}

.demo-tab:hover,
.demo-tab.active {
  color: var(--ink);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.demo-tab.active {
  color: #fffaf3;
  background: transparent;
}

.demo-tab.active .demo-tab-icon,
.demo-tab:hover .demo-tab-icon {
  background: rgba(217, 108, 63, 0.14);
  color: var(--terracotta-dark);
}

.demo-tab.active .demo-tab-icon {
  background: rgba(255, 247, 234, 0.18);
  color: var(--cream);
}

.demo-window {
  aspect-ratio: 1.22;
  border-radius: 28px;
  border-color: rgba(80, 50, 30, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 243, 0.96),
      rgba(248, 234, 216, 0.76)
    ),
    radial-gradient(
      circle at 12% 10%,
      rgba(255, 184, 140, 0.28),
      transparent 17rem
    ),
    radial-gradient(
      circle at 86% 88%,
      rgba(149, 213, 178, 0.24),
      transparent 18rem
    );
  box-shadow:
    0 20px 58px rgba(103, 61, 35, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.demo-window::before {
  opacity: 0.36;
}

.demo-window::after {
  content: "";
  position: absolute;
  inset: 52px 0 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(47, 36, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 36, 29, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 72%);
}

.demo-window-top {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
}

.demo-window-top::after {
  content: "";
  width: min(42%, 220px);
  height: 12px;
  margin-left: auto;
  border-radius: 999px;
  background: rgba(47, 36, 29, 0.08);
}

.demo-preview {
  z-index: 1;
  padding: clamp(20px, 4vw, 30px);
}

.demo-window.demo-app {
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 243, 0.76),
      rgba(255, 255, 255, 0.44)
    ),
    radial-gradient(
      circle at 20% 14%,
      rgba(149, 213, 178, 0.32),
      transparent 15rem
    ),
    radial-gradient(
      circle at 82% 86%,
      rgba(255, 184, 140, 0.24),
      transparent 17rem
    );
}

.demo-window.demo-tool {
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 243, 0.92),
      rgba(255, 255, 255, 0.62)
    ),
    radial-gradient(
      circle at 14% 12%,
      rgba(127, 183, 190, 0.28),
      transparent 15rem
    ),
    radial-gradient(
      circle at 86% 82%,
      rgba(255, 209, 102, 0.24),
      transparent 17rem
    );
}

@media (max-width: 860px) {

  .demo-window {
    aspect-ratio: 1.36;
  }
}

@media (max-width: 640px) {
  .demo-panel {
    padding: 0;
    border-radius: 0;
  }

  .demo-panel::after {
    display: none;
  }

  .demo-tabs {
    border-radius: 18px;
    padding: 5px;
    width: 100%;
    gap: 0;
  }

  .demo-tab {
    min-height: 42px;
    border-radius: 14px;
    gap: 6px;
  }

  .demo-window {
    border-radius: 22px;
    aspect-ratio: 1.12;
  }

  .demo-window::after {
    inset: 42px 0 0;
  }

  .demo-window-top::after {
    display: none;
  }
}

@media (max-width: 460px) {
  .demo-tabs {
    gap: 0;
  }

  .demo-tab {
    min-height: 40px;
    padding: 7px 5px;
  }

  .demo-tab-icon {
    display: none;
  }
}

/* Demo base reset */

.demo-panel {
  padding: 22px;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.demo-panel::before {
  display: block;
}

.demo-panel::after {
  display: none;
}

.demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: auto;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.demo-tabs::before {
  display: none;
}

.demo-tab {
  position: relative;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  min-height: 0;
  padding: 9px 14px 9px 10px;
  cursor: pointer;
  color: var(--muted);
  font-weight: 750;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  overflow: hidden;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.demo-tab:hover,
.demo-tab.active {
  color: var(--cream);
  background: var(--ink);
  border-color: transparent;
  transform: translateY(-2px);
}

.demo-window {
  aspect-ratio: 1.28;
  border-radius: 32px;
  border: 1px solid var(--border);
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(255, 184, 140, 0.26),
      transparent 16rem
    ),
    radial-gradient(
      circle at 84% 86%,
      rgba(149, 213, 178, 0.22),
      transparent 18rem
    ),
    #fffaf3;
  display: grid;
  grid-template-rows: 52px minmax(0, 1fr);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.demo-window::before {
  opacity: 0.7;
}

.demo-window::after {
  display: none;
}

.demo-window.demo-app {
  grid-template-rows: minmax(0, 1fr);
  border-color: transparent;
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(149, 213, 178, 0.26),
      transparent 15rem
    ),
    radial-gradient(
      circle at 82% 84%,
      rgba(255, 184, 140, 0.2),
      transparent 17rem
    ),
    rgba(255, 250, 243, 0.38);
}

.demo-window.demo-tool {
  background:
    radial-gradient(
      circle at 14% 12%,
      rgba(127, 183, 190, 0.22),
      transparent 15rem
    ),
    radial-gradient(
      circle at 86% 82%,
      rgba(255, 209, 102, 0.2),
      transparent 17rem
    ),
    #fffaf3;
}

.demo-window-top {
  height: 52px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: transparent;
  backdrop-filter: none;
}

.demo-window-top::after {
  display: none;
}

.demo-preview {
  display: none;
  z-index: 1;
  padding: clamp(22px, 4vw, 34px);
}

.demo-window.demo-site .demo-preview-site,
.demo-window.demo-app .demo-preview-app,
.demo-window.demo-tool .demo-preview-tool {
  display: grid;
  animation: previewIn 0.48s var(--ease-spring) both;
}

@media (max-width: 860px) {
  .demo-panel {
    padding: 18px;
    border-radius: 28px;
  }

  .demo-window {
    aspect-ratio: 1.45;
    border-radius: 24px;
    grid-template-rows: 46px minmax(0, 1fr);
  }

  .demo-window-top {
    height: 46px;
    padding-inline: 14px;
  }
}

@media (max-width: 640px) {
  .demo-panel {
    padding: 14px;
  }

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

  .demo-tab {
    min-width: 0;
    min-height: 44px;
    padding: 8px;
    border-radius: 16px;
    font-size: 12px;
    justify-content: center;
  }
}

@media (max-width: 460px) {
  .demo-panel,
  .demo-window {
    border-radius: 22px;
  }

  .demo-window {
    aspect-ratio: 1.18;
    grid-template-rows: 42px minmax(0, 1fr);
  }

  .demo-window-top {
    height: 42px;
  }

  .demo-tab {
    gap: 5px;
    padding: 8px 5px;
    font-size: 11px;
    line-height: 1;
  }

  .demo-tab-icon {
    display: grid;
    width: 20px;
    height: 20px;
  }
}

/* Application mockup */

.demo-mockup-image {
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  margin: 0;
}

.demo-mockup-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.demo-mockup-image-wide {
  padding: clamp(6px, 1.6vw, 16px);
}

.demo-mockup-image-wide img {
  width: min(100%, 680px);
  border-radius: 20px;
}

.demo-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.demo-panel::before,
.demo-panel::after {
  display: none;
}

.demo-tabs {
  margin: 0 0 18px;
  padding: 0;
}

.demo-tab {
  background: rgba(255, 250, 243, 0.54);
  box-shadow: 0 10px 26px rgba(103, 61, 35, 0.05);
}

.demo-window {
  aspect-ratio: 1.35;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  grid-template-rows: minmax(0, 1fr);
}

.demo-window::before,
.demo-window::after,
.demo-window-top {
  display: none;
}

.demo-preview {
  padding: 0;
  overflow: visible;
  place-items: center;
}

.demo-window.demo-app,
.demo-window.demo-tool {
  background: transparent;
  border: 0;
  grid-template-rows: minmax(0, 1fr);
}

.demo-mockup-image {
  position: relative;
  isolation: isolate;
  min-height: 100%;
}

.demo-mockup-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10% 4% 4%;
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 209, 102, 0.24),
      transparent 14rem
    ),
    radial-gradient(
      circle at 82% 78%,
      rgba(149, 213, 178, 0.22),
      transparent 15rem
    ),
    rgba(255, 250, 243, 0.38);
  filter: blur(0.2px);
}

.demo-mockup-image-wide img {
  width: min(100%, 720px);
  border-radius: 18px;
}

@media (max-width: 860px) {
  .demo-panel {
    padding: 0;
    border-radius: 0;
  }

  .demo-window {
    aspect-ratio: 1.32;
    border-radius: 0;
    grid-template-rows: minmax(0, 1fr);
  }

  .demo-window-top {
    display: none;
  }

  .demo-mockup-image-wide img {
    width: min(100%, 620px);
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .demo-panel {
    padding: 0;
  }

  .demo-window {
    aspect-ratio: 1.12;
  }

  .demo-tabs {
    margin-bottom: 14px;
  }

  .demo-mockup-image-wide {
    padding: 4px;
  }

  .demo-mockup-image-wide img {
    border-radius: 15px;
  }
}

@media (max-width: 460px) {
  .demo-window {
    aspect-ratio: 1.04;
    border-radius: 0;
    grid-template-rows: minmax(0, 1fr);
  }

  .demo-tab-icon {
    display: none;
  }

  .demo-mockup-image-wide img {
    border-radius: 12px;
  }
}

/* Mockup integration final layout */

.demo-grid {
  align-items: center;
  gap: clamp(34px, 5vw, 62px);
}

.demo-panel {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.demo-window,
.demo-window.demo-site,
.demo-window.demo-app,
.demo-window.demo-tool {
  width: 100%;
  min-height: clamp(360px, 38vw, 520px);
  aspect-ratio: auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 16% 14%,
      rgba(255, 209, 102, 0.18),
      transparent 18rem
    ),
    radial-gradient(
      circle at 82% 82%,
      rgba(149, 213, 178, 0.18),
      transparent 18rem
    ),
    rgba(255, 250, 243, 0.22);
  box-shadow: none;
}

.demo-window-top,
.demo-window::before,
.demo-window::after {
  display: none;
}

.demo-preview {
  min-height: 0;
  height: 100%;
  padding: clamp(12px, 2vw, 22px);
  overflow: hidden;
  place-items: center;
}

.demo-mockup-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
}

.demo-mockup-image::before {
  inset: auto;
  width: min(92%, 620px);
  height: 68%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -42%);
  opacity: 0.72;
}

.demo-mockup-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.demo-mockup-image-wide {
  padding: 0;
}

.demo-mockup-image-wide img {
  width: auto;
  height: auto;
  max-width: min(100%, 700px);
  max-height: min(100%, 500px);
}

.demo-copy {
  position: relative;
  z-index: 2;
}

@media (max-width: 1060px) {
  .demo-grid {
    align-items: start;
  }

  .demo-panel {
    max-width: 760px;
  }

  .demo-window,
  .demo-window.demo-site,
  .demo-window.demo-app,
  .demo-window.demo-tool {
    min-height: clamp(360px, 58vw, 560px);
  }
}

@media (max-width: 640px) {
  .demo-window,
  .demo-window.demo-site,
  .demo-window.demo-app,
  .demo-window.demo-tool {
    min-height: clamp(280px, 78vw, 460px);
    border-radius: 22px;
  }

  .demo-preview {
    padding: 10px;
  }

  .demo-mockup-image-wide img {
    max-height: min(100%, 390px);
  }
}

@media (max-width: 460px) {
  .demo-window,
  .demo-window.demo-site,
  .demo-window.demo-app,
  .demo-window.demo-tool {
    min-height: clamp(230px, 82vw, 360px);
    border-radius: 18px;
  }

  .demo-mockup-image-wide img {
    max-height: min(100%, 300px);
  }
}

/* Natural mockup integration */

.demo-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
}

.demo-panel {
  display: grid;
  gap: 18px;
  width: 100%;
  min-width: 0;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.demo-panel::before,
.demo-panel::after,
.demo-window::before,
.demo-window::after,
.demo-window-top,
.demo-mockup-image::before {
  display: none;
}

.demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.demo-tab {
  min-height: 42px;
  padding: 9px 14px 9px 10px;
  border: 1px solid rgba(80, 50, 30, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.5);
  box-shadow: none;
}

.demo-tab:hover,
.demo-tab.active {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
}

.demo-window,
.demo-window.demo-site,
.demo-window.demo-app,
.demo-window.demo-tool {
  display: block;
  width: 100%;
  min-height: 0;
  aspect-ratio: auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.demo-preview {
  display: none;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: visible;
}

.demo-window.demo-site .demo-preview-site,
.demo-window.demo-app .demo-preview-app,
.demo-window.demo-tool .demo-preview-tool {
  display: block;
  animation: previewIn 0.32s var(--ease-spring) both;
}

.demo-mockup-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
}

.demo-mockup-image img {
  display: block;
  object-fit: contain;
}

.demo-mockup-image-wide img {
  width: 100%;
  max-width: 720px;
  height: auto;
  max-height: none;
  border-radius: 0;
  filter: drop-shadow(0 26px 42px rgba(103, 61, 35, 0.13));
}

.demo-mockup-image-site,
.demo-mockup-image-tool {
  display: grid;
  justify-items: center;
}

.demo-mockup-image-tool {
  margin-inline: clamp(-18px, -1.4vw, 0px);
}

.demo-mockup-image-tool img {
  max-width: 760px;
  filter: drop-shadow(0 30px 46px rgba(74, 49, 34, 0.13))
    drop-shadow(0 2px 8px rgba(74, 49, 34, 0.08));
}

@media (max-width: 1060px) {
  .demo-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
  }

  .demo-panel {
    max-width: 760px;
  }

  .demo-copy {
    order: -1;
  }
}

@media (max-width: 640px) {
  .demo-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .demo-tab {
    justify-content: center;
    min-width: 0;
    min-height: 42px;
    padding: 8px;
    border-radius: 16px;
    font-size: 12px;
  }

  .demo-mockup-image-tool {
    margin-inline: 0;
  }
}

@media (max-width: 460px) {
  .demo-grid {
    gap: 26px;
  }

  .demo-tab {
    min-height: 38px;
    padding: 7px 6px;
    font-size: 11px;
  }

  .demo-tab-icon {
    display: none;
  }
}

/* Editorial mockup composition */

.demo-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  grid-template-rows: auto 1fr;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px) clamp(42px, 7vw, 96px);
  padding-block: clamp(8px, 2vw, 26px);
}

.demo-panel {
  display: contents;
}

.demo-panel::before,
.demo-panel::after {
  content: none;
}

.demo-copy {
  grid-column: 1;
  grid-row: 1 / span 2;
  max-width: 440px;
  align-self: center;
}

.demo-tabs {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: end;
  gap: 8px;
  width: min(100%, 330px);
  margin-top: clamp(4px, 1vw, 12px);
}

.demo-tab {
  position: relative;
  justify-content: flex-start;
  width: 100%;
  min-height: 48px;
  padding: 10px 13px 10px 10px;
  border-color: rgba(56, 42, 33, 0.1);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.42);
  color: rgba(47, 36, 29, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.demo-tab:hover,
.demo-tab.active {
  border-color: rgba(47, 36, 29, 0.18);
  background: rgba(255, 252, 247, 0.86);
  color: var(--ink);
  transform: translateX(4px);
}

.demo-tab.active {
  box-shadow:
    inset 3px 0 0 var(--accent),
    0 10px 24px rgba(77, 49, 32, 0.07);
}

.demo-tab-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.66);
  color: currentColor;
  box-shadow: inset 0 0 0 1px rgba(47, 36, 29, 0.06);
}

.demo-window,
.demo-window.demo-site,
.demo-window.demo-app,
.demo-window.demo-tool {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  width: min(100%, 820px);
  min-height: clamp(360px, 44vw, 600px);
  display: grid;
  align-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.demo-window::before {
  content: none;
}

.demo-preview {
  width: 100%;
  height: auto;
  padding: 0;
  overflow: visible;
}

.demo-mockup-image {
  width: 100%;
  height: auto;
  display: grid;
  place-items: center;
}

.demo-mockup-image-wide img {
  width: min(100%, 780px);
  max-width: none;
  image-rendering: auto;
  filter: drop-shadow(0 24px 26px rgba(103, 61, 35, 0.11))
    drop-shadow(0 3px 8px rgba(103, 61, 35, 0.07));
}

.demo-mockup-image-site img {
  transform: none;
}

.demo-mockup-image-tool {
  margin-inline: 0;
}

.demo-mockup-image-tool img {
  width: min(100%, 800px);
  max-width: none;
  transform: none;
  filter: drop-shadow(0 24px 28px rgba(74, 49, 34, 0.1))
    drop-shadow(0 3px 8px rgba(74, 49, 34, 0.06));
}

@media (max-width: 1060px) {
  .demo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 22px;
  }

  .demo-copy,
  .demo-tabs,
  .demo-window,
  .demo-window.demo-site,
  .demo-window.demo-app,
  .demo-window.demo-tool {
    grid-column: 1;
  }

  .demo-copy {
    grid-row: 1;
    max-width: 680px;
    justify-self: start;
  }

  .demo-tabs {
    grid-row: 2;
    width: 100%;
    max-width: 680px;
    margin-top: 0;
    justify-self: center;
  }

  .demo-tab {
    width: auto;
    min-width: 150px;
  }

  .demo-tab:hover,
  .demo-tab.active {
    transform: translateY(-2px);
  }

  .demo-tab.active {
    box-shadow:
      inset 0 -3px 0 var(--accent),
      0 10px 22px rgba(77, 49, 32, 0.06);
  }

  .demo-window,
  .demo-window.demo-site,
  .demo-window.demo-app,
  .demo-window.demo-tool {
    grid-row: 3;
    width: 100%;
    min-height: 0;
    margin-top: 6px;
  }

  .demo-mockup-image-site img,
  .demo-mockup-image-tool img {
    transform: none;
  }
}

@media (max-width: 640px) {
  .demo-grid {
    gap: 18px;
    padding-block: 0;
  }

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

  .demo-tab {
    width: 100%;
    min-width: 0;
    min-height: 40px;
    padding: 8px 6px;
    border-radius: 14px;
    font-size: 12px;
  }

  .demo-tab-icon {
    width: 26px;
    height: 26px;
  }

  .demo-mockup-image-wide img,
  .demo-mockup-image-tool img {
    width: min(112%, 640px);
    margin-inline: -6%;
  }
}

@media (max-width: 460px) {
  .demo-tabs {
    gap: 6px;
  }

  .demo-tab {
    min-height: 38px;
    font-size: 11px;
  }
}

/* Updated application triptych mockup */

.demo-mockup-image-app {
  display: grid;
  place-items: center;
  width: 100%;
  margin-inline: 0;
}

.demo-mockup-image-app img {
  display: block;
  width: min(100%, 820px);
  max-width: none;
  height: auto;
  border-radius: 0;
  transform: none;
  image-rendering: auto;
  filter: drop-shadow(0 24px 28px rgba(47, 36, 29, 0.12))
    drop-shadow(0 3px 8px rgba(47, 36, 29, 0.06));
}

@media (max-width: 1060px) {
  .demo-mockup-image-app {
    margin-inline: 0;
  }

  .demo-mockup-image-app img {
    width: min(100%, 760px);
  }
}

@media (max-width: 640px) {
  .demo-mockup-image-app img {
    width: min(100%, 620px);
    margin-inline: 0;
  }
}

@media (max-width: 460px) {
  .demo-mockup-image-app img {
    width: 100%;
    margin-inline: 0;
  }
}

/* Refined demo selector */

.demo-tabs {
  --active-index: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 390px);
  margin-top: clamp(10px, 1.4vw, 18px);
  padding: 5px;
  border: 1px solid rgba(47, 36, 29, 0.1);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 30px rgba(72, 46, 30, 0.06);
}

.demo-tabs[data-active="1"] {
  --active-index: 1;
}

.demo-tabs[data-active="2"] {
  --active-index: 2;
}

.demo-tabs::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  z-index: 0;
  width: calc((100% - 10px) / 3);
  border-radius: 999px;
  background: var(--ink);
  box-shadow:
    0 10px 20px rgba(47, 36, 29, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateX(calc(var(--active-index) * 100%));
  transition: transform 0.28s var(--ease-spring);
}

.demo-tab {
  position: relative;
  z-index: 1;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(47, 36, 29, 0.68);
  box-shadow: none;
  font-size: 13px;
  transform: none;
}

.demo-tab:hover,
.demo-tab.active {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
  transform: none;
}

.demo-tab.active {
  color: var(--cream);
  box-shadow: none;
}

.demo-tabs .demo-tab[aria-pressed="true"],
.demo-tabs .demo-tab.active:hover,
.demo-tabs .demo-tab[aria-pressed="true"]:hover {
  color: var(--cream);
}

.demo-tabs .demo-tab[aria-pressed="false"]:hover {
  color: var(--ink);
}

.demo-tabs .demo-tab span {
  position: relative;
  z-index: 1;
}

.demo-tab-icon {
  width: 24px;
  height: 24px;
  background: transparent;
  box-shadow: none;
  opacity: 0.78;
}

.demo-tab.active .demo-tab-icon,
.demo-tab[aria-pressed="true"] .demo-tab-icon {
  opacity: 1;
}

.demo-tabs .demo-tab.active,
.demo-tabs .demo-tab[aria-pressed="true"] {
  background: var(--ink);
  color: var(--cream);
  box-shadow:
    0 8px 18px rgba(47, 36, 29, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.demo-tabs .demo-tab.active .demo-tab-icon,
.demo-tabs .demo-tab[aria-pressed="true"] .demo-tab-icon {
  color: var(--cream);
}

.demo-tab-icon svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 1060px) {
  .demo-tabs {
    width: min(100%, 420px);
    max-width: none;
    margin-top: 0;
  }

  .demo-tab {
    width: 100%;
    min-width: 0;
  }

  .demo-tab:hover,
  .demo-tab.active {
    transform: none;
  }
}

@media (max-width: 640px) {
  .demo-tabs {
    width: 100%;
    padding: 4px;
    border-radius: 18px;
  }

  .demo-tabs::before {
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc((100% - 8px) / 3);
    border-radius: 14px;
  }

  .demo-tab {
    min-height: 38px;
    padding: 7px 5px;
    border-radius: 14px;
    font-size: 12px;
  }

  .demo-tab-icon {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 460px) {
  .demo-tab {
    min-height: 36px;
    font-size: 11px;
  }
}

/* Demo spacing and image sizing tune */

.demo-grid {
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: clamp(12px, 1.8vw, 22px) clamp(44px, 7vw, 104px);
  padding-block: clamp(12px, 2.2vw, 30px);
}

.demo-copy {
  grid-row: 1 / span 2;
  max-width: 470px;
  align-self: start;
  padding-top: clamp(10px, 3.4vw, 56px);
}

.demo-copy h2 {
  max-width: 11.5em;
  margin-bottom: clamp(14px, 1.6vw, 20px);
  line-height: 0.98;
}

.demo-copy p {
  max-width: 34em;
}

.demo-tabs {
  width: min(100%, 430px);
  margin-top: 0;
  margin-bottom: clamp(2px, 0.8vw, 8px);
}

.demo-window,
.demo-window.demo-site,
.demo-window.demo-app,
.demo-window.demo-tool {
  width: min(100%, 920px);
  min-height: 0;
  align-self: start;
}

.demo-preview {
  display: none;
  width: 100%;
}

.demo-window.demo-site .demo-preview-site,
.demo-window.demo-app .demo-preview-app,
.demo-window.demo-tool .demo-preview-tool {
  display: grid;
  place-items: start center;
}

.demo-mockup-image-wide img {
  width: min(100%, 860px);
}

.demo-mockup-image-app img {
  width: min(100%, 900px);
}

.demo-mockup-image-tool img {
  width: min(100%, 880px);
}

@media (max-width: 1060px) {
  .demo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 18px;
    padding-block: clamp(8px, 2vw, 22px);
  }

  .demo-copy {
    grid-row: 1;
    max-width: 720px;
    align-self: start;
    justify-self: center;
    padding-top: 0;
    text-align: center;
  }

  .demo-copy h2 {
    max-width: 14em;
    margin-inline: auto;
  }

  .demo-copy p {
    max-width: 42em;
    margin-inline: auto;
  }

  .demo-tabs {
    grid-row: 2;
    width: min(100%, 430px);
    margin-inline: auto;
    margin-bottom: 2px;
  }

  .demo-window,
  .demo-window.demo-site,
  .demo-window.demo-app,
  .demo-window.demo-tool {
    grid-row: 3;
    width: 100%;
    margin-top: 0;
  }

  .demo-mockup-image-wide img,
  .demo-mockup-image-tool img,
  .demo-mockup-image-app img {
    width: min(100%, 780px);
    margin-inline: 0;
  }
}

@media (max-width: 640px) {
  .demo-grid {
    gap: 16px;
  }

  .demo-copy {
    text-align: left;
    justify-self: start;
  }

  .demo-copy h2,
  .demo-copy p {
    margin-inline: 0;
  }

  .demo-copy h2 {
    max-width: 12.5em;
  }

  .demo-tabs {
    width: min(100%, 380px);
  }

  .demo-mockup-image-wide img,
  .demo-mockup-image-tool img,
  .demo-mockup-image-app img {
    width: 100%;
    margin-inline: 0;
  }
}

@media (max-width: 460px) {
  .demo-grid {
    gap: 14px;
  }

  .demo-tabs {
    width: 100%;
  }
}

/* Contact form typography polish */

.contact-card {
  align-items: center;
}

.contact-copy {
  max-width: 410px;
}

.contact-copy h2 {
  max-width: 10em;
  line-height: 1;
  margin-bottom: 16px;
}

.contact-copy p {
  max-width: 32em;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.72;
}

.contact-form {
  gap: 16px;
}

.field-row {
  gap: 16px;
}

.contact-form label {
  gap: 9px;
  color: rgba(47, 36, 29, 0.74);
  font-size: 14px;
  font-weight: 750;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form label > span {
  padding-left: 2px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 56px;
  border-radius: 18px;
  border-color: rgba(80, 50, 30, 0.12);
  background: rgba(255, 252, 247, 0.78);
  color: var(--ink);
  padding: 15px 16px;
  font-size: 15.5px;
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 1px 0 rgba(47, 36, 29, 0.02);
}

.contact-form textarea {
  min-height: 154px;
  line-height: 1.6;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(127, 102, 86, 0.58);
  font-weight: 550;
}

.contact-form select {
  appearance: none;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(47, 36, 29, 0.64) 50%),
    linear-gradient(135deg, rgba(47, 36, 29, 0.64) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 52%,
    calc(100% - 18px) 52%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(80, 50, 30, 0.18);
  background-color: rgba(255, 252, 247, 0.94);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(217, 108, 63, 0.52);
  background-color: #fffdfa;
  box-shadow:
    0 0 0 4px rgba(217, 108, 63, 0.12),
    0 12px 26px rgba(103, 61, 35, 0.08);
  transform: none;
}

.contact-form .btn {
  margin-top: 4px;
  min-height: 56px;
  font-size: 15px;
  font-weight: 850;
}

@media (max-width: 860px) {
  .contact-card {
    align-items: start;
  }

  .contact-copy {
    max-width: 660px;
  }

  .contact-copy h2 {
    max-width: 12em;
  }
}

@media (max-width: 640px) {
  .contact-copy h2 {
    max-width: 11em;
  }

  .contact-form {
    gap: 14px;
  }

  .field-row {
    gap: 14px;
  }

  .contact-form label {
    font-size: 13.5px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 54px;
    border-radius: 16px;
    padding: 14px 15px;
    font-size: 16px;
  }
}

/* Title scale and placement tune */

.hero-title {
  max-width: 9.8ch;
  font-size: clamp(52px, 8.2vw, 104px);
  line-height: 0.9;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(34px, 4.2vw, 54px);
}

.section-heading h2,
.approach-copy h2,
.demo-copy h2,
.honesty-card h2,
.contact-copy h2 {
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1;
  text-wrap: balance;
}

.section-heading h2 {
  max-width: 12em;
}

.section-heading p {
  max-width: 620px;
}

.service-card h3 {
  max-width: 11em;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.08;
  text-wrap: balance;
}

.approach-copy {
  align-self: start;
  padding-top: clamp(8px, 2.2vw, 28px);
}

.approach-copy h2 {
  max-width: 10.5em;
}

.step h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.1;
}

.honesty-card {
  align-items: center;
}

.honesty-card h2 {
  max-width: 10em;
}

.faq-grid .section-heading {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.faq-grid .section-heading h2 {
  max-width: 9em;
}

.contact-copy h2 {
  font-size: clamp(40px, 4.2vw, 60px);
  max-width: 9.5em;
}

@media (max-width: 1060px) {
  .hero-title {
    max-width: 10.5ch;
    font-size: clamp(46px, 10vw, 78px);
  }

  .section-heading h2,
  .approach-copy h2,
  .demo-copy h2,
  .honesty-card h2,
  .contact-copy h2 {
    font-size: clamp(36px, 6vw, 52px);
  }

  .section-heading {
    max-width: 680px;
  }

  .faq-grid .section-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero-title {
    max-width: 9.2ch;
    font-size: clamp(38px, 13vw, 56px);
    line-height: 0.94;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .approach-copy h2,
  .demo-copy h2,
  .honesty-card h2,
  .contact-copy h2 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.04;
  }

  .section-heading h2,
  .approach-copy h2,
  .demo-copy h2,
  .honesty-card h2,
  .contact-copy h2 {
    max-width: 11em;
  }

  .service-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 460px) {
  .hero-title {
    font-size: clamp(36px, 12.5vw, 48px);
  }

  .section-heading h2,
  .approach-copy h2,
  .demo-copy h2,
  .honesty-card h2,
  .contact-copy h2 {
    font-size: clamp(30px, 9vw, 38px);
  }
}

/* Legal page refresh */

.legal-page {
  min-height: auto;
  padding-top: clamp(128px, 16vw, 178px);
  padding-bottom: clamp(70px, 10vw, 116px);
}

.legal-shell {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
}

.legal-hero {
  max-width: 760px;
}

.legal-hero h1 {
  max-width: 9em;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.legal-hero p {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.7;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4.8vw, 64px);
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 112px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(47, 36, 29, 0.98), rgba(73, 51, 38, 0.95)),
    var(--ink);
  color: var(--cream);
  box-shadow: 0 24px 54px rgba(47, 36, 29, 0.15);
  overflow: hidden;
}

.legal-summary::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(255, 184, 140, 0.24);
}

.legal-summary > * {
  position: relative;
  z-index: 1;
}

.legal-summary-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 247, 234, 0.7);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-summary h2 {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.02;
}

.legal-summary p {
  margin-top: 14px;
  color: rgba(255, 247, 234, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.legal-summary a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--cream);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.legal-list {
  display: grid;
  gap: 14px;
  max-width: none;
}

.legal-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(80, 50, 30, 0.1);
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.58);
  box-shadow: 0 14px 38px rgba(103, 61, 35, 0.06);
}

.legal-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(217, 108, 63, 0.12);
  color: var(--terracotta-dark);
  font-size: 13px;
  font-weight: 900;
}

.legal-item h2 {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
  font-weight: 850;
}

.legal-item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.legal-item p + p {
  margin-top: 14px;
}

.legal-item strong {
  color: var(--ink);
  font-weight: 850;
}

.legal-item a {
  color: var(--terracotta-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 860px) {
  .legal-page {
    padding-top: 116px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .legal-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .legal-item {
    grid-template-columns: 1fr;
    gap: 14px;
    border-radius: 22px;
  }

  .legal-summary {
    border-radius: 24px;
  }
}
