@import url("https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&family=Nunito:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f7faf9;
  --bg-alt: #eef6f5;
  --surface: #ffffff;
  --surface-soft: #f3f5ff;
  --ink: #17202a;
  --muted: #5f6b7a;
  --line: #1e293b;
  --line-soft: #d7ddf7;
  --primary: #245bff;
  --primary-dark: #1842bd;
  --mint: #15b89a;
  --coral: #ff6b5e;
  --yellow: #f3c14b;
  --shadow: 5px 5px 0 var(--line-soft);
  --radius: 8px;
  --max-width: 1120px;
  --font-body:
    "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-hand: "Kalam", "Nunito", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

code {
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  background: #f5f7ff;
  color: var(--ink);
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: 0.9em;
  padding: 0.1rem 0.35rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  border: 2px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  padding: 0.65rem 0.9rem;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 2px dashed rgba(30, 41, 59, 0.4);
  background: rgba(247, 250, 249, 0.92);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max-width));
  height: 68px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-weight: 800;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: transparent;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-word {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.65rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding-block: 0.4rem;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: var(--primary);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: 3px 3px 0 var(--line-soft);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--line);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  border: 2px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-weight: 900;
  padding: 0.75rem 1rem;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--line-soft);
}

.button:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--line-soft);
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
}

.button-secondary {
  background: var(--yellow);
}

.button-small {
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  box-shadow: 3px 3px 0 var(--line-soft);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(70svh, 760px);
  overflow: hidden;
  border-bottom: 2px dashed rgba(30, 41, 59, 0.35);
  background: var(--bg-alt);
}

.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.22;
  filter: saturate(0.74) contrast(0.92);
  transform: scale(1.04);
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(247, 250, 249, 0.98) 0%,
      rgba(247, 250, 249, 0.9) 52%,
      rgba(247, 250, 249, 0.62) 100%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(30, 41, 59, 0.05) 0 1px,
      transparent 1px 28px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(30, 41, 59, 0.05) 0 1px,
      transparent 1px 28px
    );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 3.5rem;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding-block: 4.5rem;
}

.hero-copy-wrap {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.2;
  padding: 0.45rem 0.65rem;
  box-shadow: 3px 3px 0 var(--line-soft);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
}

.hero h1 {
  margin-top: 1.3rem;
  font-family: var(--font-hand);
  font-size: 4.5rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-kicker {
  margin-top: 1.2rem;
  color: var(--primary-dark);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.25;
}

.hero-copy {
  margin-top: 1rem;
  max-width: 590px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-showcase {
  justify-self: end;
  width: min(100%, 430px);
}

.showcase-window {
  position: relative;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(
      0deg,
      rgba(30, 41, 59, 0.045) 0 1px,
      transparent 1px 22px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(30, 41, 59, 0.045) 0 1px,
      transparent 1px 22px
    ),
    #ffffff;
  box-shadow: 10px 10px 0 #d5ddff;
  padding: 1rem;
  transform: rotate(1deg);
}

.showcase-window::before {
  position: absolute;
  right: -18px;
  top: 48px;
  width: 86px;
  height: 52px;
  border: 2px solid var(--line);
  border-radius: 7px;
  background: #fff4d2;
  box-shadow: 4px 4px 0 var(--line-soft);
  color: var(--ink);
  content: "editable";
  display: grid;
  place-items: center;
  font-family: var(--font-hand);
  font-size: 1.1rem;
  font-weight: 700;
  transform: rotate(7deg);
}

.showcase-toolbar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 2px dashed rgba(30, 41, 59, 0.28);
  padding-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.showcase-toolbar span {
  width: 10px;
  height: 10px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--coral);
}

.showcase-toolbar span:nth-child(2) {
  background: var(--yellow);
}

.showcase-toolbar span:nth-child(3) {
  background: var(--mint);
  margin-right: 0.35rem;
}

.showcase-prompt {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 1rem;
  border: 2px solid var(--line);
  border-radius: 7px;
  background: #f3f5ff;
  box-shadow: 4px 4px 0 var(--line-soft);
  padding: 0.8rem;
}

.showcase-prompt span {
  border: 2px solid var(--line);
  border-radius: 6px;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-hand);
  font-weight: 700;
  line-height: 1;
  padding: 0.35rem 0.42rem;
}

.showcase-prompt p {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
}

.wireframe-sheet {
  display: grid;
  gap: 0.65rem;
  width: min(78%, 270px);
  margin: 1.35rem auto 1rem;
  border: 2px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 5px 5px 0 #cfece5;
  padding: 1rem;
  transform: rotate(-2deg);
}

.wireframe-topbar,
.wireframe-hero,
.wireframe-line,
.wireframe-field,
.wireframe-button {
  border: 2px solid var(--line);
  border-radius: 5px;
  background: #f8fafc;
}

.wireframe-topbar {
  width: 46%;
  height: 14px;
}

.wireframe-hero {
  height: 62px;
  background:
    linear-gradient(
      135deg,
      transparent 48%,
      rgba(30, 41, 59, 0.45) 49%,
      rgba(30, 41, 59, 0.45) 51%,
      transparent 52%
    ),
    linear-gradient(
      45deg,
      transparent 48%,
      rgba(30, 41, 59, 0.45) 49%,
      rgba(30, 41, 59, 0.45) 51%,
      transparent 52%
    ),
    #eef6f5;
}

.wireframe-line {
  width: 68%;
  height: 10px;
  border-radius: 999px;
}

.wireframe-line.wide {
  width: 88%;
}

.wireframe-field {
  height: 28px;
}

.wireframe-field.short {
  width: 72%;
}

.wireframe-button {
  width: 54%;
  height: 32px;
  background: var(--yellow);
}

.showcase-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.showcase-footer span {
  border: 2px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 2px 2px 0 var(--line-soft);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  padding: 0.3rem 0.55rem;
}

.section {
  padding: 5.5rem 1rem;
}

.section-tight {
  padding-block: 3.5rem;
}

.section-alt {
  background: var(--bg-alt);
}

.section-white {
  background: var(--surface);
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 2.25rem;
}

.section-label {
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  margin-top: 0.55rem;
  font-family: var(--font-hand);
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-copy {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card,
.feature-card,
.contact-card,
.legal-note {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stat-card {
  min-height: 118px;
  padding: 1.2rem;
}

.stat-value {
  color: var(--primary-dark);
  font-family: var(--font-hand);
  font-size: 2rem;
  line-height: 1;
}

.stat-label {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.visual-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: 3rem;
}

.product-frame {
  margin: 0;
}

.product-preview {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 8px 8px 0 #cfece5;
}

.product-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.86) contrast(0.94);
}

.product-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.42)
    ),
    repeating-linear-gradient(
      0deg,
      rgba(23, 32, 42, 0.05) 0 1px,
      transparent 1px 22px
    );
}

.preview-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 0.55rem;
  background: rgba(247, 201, 72, 0.92);
  box-shadow: 4px 4px 0 rgba(41, 87, 216, 0.14);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
}

.product-frame figcaption {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.check-list li {
  display: flex;
  gap: 0.7rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 0.28rem;
  border: 2px solid var(--line);
  border-radius: 4px;
  background: var(--mint);
  box-shadow: 2px 2px 0 var(--line-soft);
  flex: 0 0 auto;
}

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

.feature-card {
  display: grid;
  grid-template-rows: auto minmax(3.6rem, auto) 1fr;
  align-content: start;
  min-height: 246px;
  padding: 1.5rem;
}

.feature-mark {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: 3px 3px 0 var(--line-soft);
  transform: rotate(-3deg);
}

.feature-card:nth-child(2n) .feature-mark {
  background: #e9fbf6;
  transform: rotate(2deg);
}

.feature-card:nth-child(3n) .feature-mark {
  background: #fff4d2;
}

.feature-mark::before,
.feature-mark::after {
  position: absolute;
  content: "";
  border: 2px solid var(--line);
}

.mark-desktop::before {
  inset: 9px 7px 15px;
  border-radius: 3px;
}

.mark-desktop::after {
  left: 15px;
  right: 15px;
  bottom: 8px;
  height: 4px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.mark-import::before {
  left: 10px;
  top: 8px;
  width: 22px;
  height: 28px;
  border-radius: 3px;
  background: #ffffff;
}

.mark-import::after {
  right: 8px;
  bottom: 9px;
  width: 14px;
  height: 14px;
  border-left: 0;
  border-top: 0;
  transform: rotate(-45deg);
}

.mark-ai::before {
  left: 21px;
  top: 7px;
  width: 4px;
  height: 30px;
  border-radius: 999px;
  background: var(--yellow);
}

.mark-ai::after {
  left: 9px;
  top: 20px;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow);
}

.mark-local::before {
  inset: 10px 9px 9px;
  border-radius: 999px;
  background: #e9fbf6;
}

.mark-local::after {
  left: 20px;
  top: 6px;
  width: 8px;
  height: 18px;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  background: var(--surface);
}

.mark-language::before {
  left: 10px;
  top: 11px;
  width: 28px;
  height: 20px;
  border-radius: 999px;
}

.mark-language::after {
  left: 12px;
  top: 22px;
  width: 24px;
  height: 0;
  border-left: 0;
  border-right: 0;
}

.mark-focus::before {
  left: 10px;
  top: 10px;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: #ffffff;
}

.mark-focus::after {
  left: 17px;
  top: 17px;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--coral);
}

.feature-card h3 {
  font-family: var(--font-hand);
  font-size: 1.45rem;
  line-height: 1.2;
}

.feature-card p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.status-panel {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.5rem;
}

.status-panel h3 {
  font-family: var(--font-hand);
  font-size: 1.6rem;
}

.status-panel dl {
  display: grid;
  gap: 0.9rem;
  margin: 1rem 0 0;
}

.status-panel dt {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-panel dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.cta-panel {
  border-top: 2px dashed rgba(30, 41, 59, 0.35);
  border-bottom: 2px dashed rgba(30, 41, 59, 0.35);
  background:
    repeating-linear-gradient(
      0deg,
      rgba(30, 41, 59, 0.04) 0 1px,
      transparent 1px 28px
    ),
    var(--surface-soft);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-inner h2 {
  font-family: var(--font-hand);
  font-size: 2.6rem;
  line-height: 1.05;
}

.cta-inner p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.site-footer {
  border-top: 2px dashed rgba(30, 41, 59, 0.45);
  background: var(--ink);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(140px, 1fr));
  gap: 2rem;
  padding-block: 3rem;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #ffffff;
}

.footer-title {
  margin-bottom: 0.8rem;
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: #ffffff;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px dashed rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  font-size: 0.85rem;
}

.page-hero {
  border-bottom: 2px dashed rgba(30, 41, 59, 0.35);
  background:
    repeating-linear-gradient(
      0deg,
      rgba(30, 41, 59, 0.04) 0 1px,
      transparent 1px 28px
    ),
    var(--bg-alt);
  padding: 5rem 1rem;
}

.page-hero-inner {
  width: min(100%, 780px);
  margin-inline: auto;
}

.page-hero h1 {
  font-family: var(--font-hand);
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.content {
  width: min(100% - 2rem, 780px);
  margin-inline: auto;
}

.prose {
  display: grid;
  gap: 2rem;
  color: var(--muted);
}

.prose section {
  border-bottom: 2px dashed rgba(30, 41, 59, 0.18);
  padding-bottom: 2rem;
}

.prose section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.prose h2 {
  color: var(--ink);
  font-family: var(--font-hand);
  font-size: 2rem;
  line-height: 1.2;
}

.prose p {
  margin-top: 0.5rem;
}

.prose a {
  color: var(--primary-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

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

.contact-card {
  padding: 1.5rem;
}

.contact-card h2 {
  font-family: var(--font-hand);
  font-size: 1.6rem;
}

.contact-card p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.contact-card a {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--primary-dark);
  font-weight: 900;
  word-break: break-word;
}

.legal-note {
  margin-top: 2rem;
  padding: 1.2rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-inner,
  .visual-layout,
  .split-band,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner,
  .visual-layout,
  .split-band {
    gap: 2rem;
  }

  .hero-showcase {
    justify-self: stretch;
    width: min(100%, 560px);
  }

  .cta-inner {
    display: grid;
  }

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

  .site-nav {
    gap: 1rem;
  }
}

@media (max-width: 760px) {
  .header-inner {
    height: 62px;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 0.75rem;
  }

  .site-header[data-open="true"] .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 68svh;
  }

  .hero-inner {
    padding-block: 3rem;
  }

  .hero-showcase {
    display: none;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-kicker {
    font-size: 1.25rem;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 420px;
  }

  .hero-actions .button {
    width: 100%;
    white-space: normal;
  }

  .section {
    padding-block: 4rem;
  }

  .section-title,
  .cta-inner h2 {
    font-size: 2.35rem;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .contact-grid,
  .stat-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-word {
    font-size: 1.15rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    min-width: 0;
    width: 100%;
  }

  .hero-actions .button {
    white-space: normal;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-kicker {
    font-size: 1.12rem;
    overflow-wrap: anywhere;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
