:root {
  color-scheme: light;
  --paper: #fffaf1;
  --paper-quiet: #fbf2e5;
  --paper-warm: #f4e3c8;
  --sand: #d6a354;
  --sand-soft: #f0cf91;
  --copper: #a64024;
  --terracotta: #c24f2c;
  --terracotta-soft: #f29b6e;
  --sage: #656d50;
  --forest: #285c3c;
  --forest-soft: #e7f1ea;
  --forest-line: #b9d6c5;
  --ink: #32231b;
  --muted: #6f5b4f;
  --line: rgba(149, 101, 54, 0.2);
  --shadow: 0 20px 60px rgba(111, 68, 31, 0.12);
  --soft-shadow: 0 12px 36px rgba(111, 68, 31, 0.09);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(150deg, rgba(255, 250, 241, 0.96), rgba(250, 236, 212, 0.78) 52%, rgba(255, 250, 241, 0.98)),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: -30vh -20vw auto auto;
  z-index: -2;
  width: 72vw;
  height: 64vh;
  border-radius: 45%;
  background: linear-gradient(145deg, rgba(242, 155, 110, 0.18), rgba(214, 163, 84, 0.06));
  content: "";
  filter: blur(6px);
  transform: rotate(-8deg);
}

body::after {
  position: fixed;
  inset: auto auto -24vh -20vw;
  z-index: -2;
  width: 64vw;
  height: 54vh;
  border-radius: 48%;
  background: linear-gradient(20deg, rgba(214, 163, 84, 0.12), rgba(255, 250, 241, 0));
  content: "";
  filter: blur(4px);
  transform: rotate(11deg);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fffaf1;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.narrow {
  max-width: 790px;
  text-align: center;
}

.section {
  position: relative;
  padding: 6.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(149, 101, 54, 0.13);
  background: rgba(255, 250, 241, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 96px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  line-height: 0;
}

.brand-logo {
  width: 288px;
  height: auto;
  mix-blend-mode: multiply;
  object-fit: contain;
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a,
.footer-nav a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  padding: 0.62rem 0.86rem;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.footer-nav a:hover {
  background: rgba(214, 163, 84, 0.12);
  color: var(--copper);
  transform: translateY(-1px);
}

.site-nav a:focus-visible,
.footer-nav a:focus-visible,
.brand-link:focus-visible,
.button:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid rgba(220, 96, 52, 0.38);
  outline-offset: 3px;
}

.hero {
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 4.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  align-items: center;
  gap: 4.5rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.82rem;
  color: var(--copper);
  font-size: 0.83rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.35rem;
  font-size: 3.72rem;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: 2.35rem;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.24rem;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.2rem;
}

.section-copy p,
.narrow p,
.soft-card p,
.contact-section p,
.site-footer p {
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.1;
  padding: 0.88rem 1.18rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--copper));
  box-shadow: 0 14px 30px rgba(184, 75, 41, 0.23);
  color: #fffaf1;
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(184, 75, 41, 0.28);
}

.button-secondary {
  border-color: rgba(184, 75, 41, 0.24);
  background: rgba(255, 250, 241, 0.72);
  color: var(--copper);
}

.ambient {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.ambient-one {
  top: 11%;
  left: 5%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(220, 96, 52, 0.16);
  border-radius: 50%;
}

.ambient-two {
  right: 9%;
  bottom: 7%;
  width: 260px;
  height: 120px;
  border-radius: 999px 999px 0 0;
  border-top: 2px solid rgba(214, 163, 84, 0.2);
}

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

.sun-disc {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 250, 241, 0.88), rgba(240, 207, 145, 0.34) 42%, rgba(214, 163, 84, 0.28) 70%),
    linear-gradient(145deg, rgba(255, 250, 241, 0.7), rgba(244, 227, 200, 0.75));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sun-disc::before {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(220, 96, 52, 0.18);
  border-radius: 50%;
  content: "";
}

.sun-disc::after {
  position: absolute;
  right: 16%;
  top: 17%;
  width: 28%;
  height: 28%;
  border-top: 9px solid rgba(220, 96, 52, 0.8);
  border-radius: 50%;
  content: "";
  transform: rotate(18deg);
}

.arc {
  position: absolute;
  border-radius: 50%;
  border: 7px solid transparent;
}

.arc-large {
  inset: 6%;
  border-left-color: var(--terracotta);
  border-top-color: rgba(220, 96, 52, 0.58);
  transform: rotate(-28deg);
}

.arc-small {
  inset: 28% 8% 12% 46%;
  border-right-color: rgba(214, 163, 84, 0.72);
  border-bottom-color: rgba(214, 163, 84, 0.38);
  transform: rotate(16deg);
}

.lotus-petal {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 22%;
  height: 32%;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(180deg, rgba(220, 96, 52, 0.72), rgba(242, 155, 110, 0.62));
  transform-origin: 0 100%;
}

.petal-one {
  transform: translate(-50%, -50%) rotate(45deg);
}

.petal-two {
  transform: translate(-50%, -50%) rotate(4deg);
}

.petal-three {
  transform: translate(-50%, -50%) rotate(86deg);
}

.sand-wave {
  position: absolute;
  left: -12%;
  right: -8%;
  bottom: 9%;
  height: 34%;
  background: linear-gradient(135deg, rgba(188, 132, 59, 0.83), rgba(240, 207, 145, 0.82));
  border-radius: 50% 50% 0 0;
  transform: rotate(-7deg);
}

.wave-two {
  bottom: 14%;
  height: 17%;
  border-top: 7px solid rgba(255, 250, 241, 0.96);
  background: transparent;
  transform: rotate(-5deg);
}

.dot {
  position: absolute;
  border-radius: 50%;
  background: var(--sand-soft);
}

.dot-one {
  right: 17%;
  top: 27%;
  width: 28px;
  height: 28px;
}

.dot-two {
  right: 10%;
  top: 48%;
  width: 18px;
  height: 18px;
}

.dot-three {
  right: 18%;
  top: 60%;
  width: 13px;
  height: 13px;
}

.value-section {
  padding-top: 4rem;
}

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

.soft-card,
.tag-panel,
.product-preview,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: var(--soft-shadow);
}

.soft-card {
  min-height: 245px;
  padding: 1.45rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.soft-card:hover {
  border-color: rgba(220, 96, 52, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card-symbol {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 1.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214, 163, 84, 0.28), rgba(220, 96, 52, 0.16));
}

.card-symbol::before,
.card-symbol::after {
  position: absolute;
  content: "";
}

.symbol-flow::before {
  inset: 14px 9px;
  border-top: 3px solid var(--terracotta);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.symbol-flow::after {
  right: 10px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.symbol-track::before {
  left: 14px;
  top: 10px;
  width: 20px;
  height: 27px;
  border: 2px solid var(--copper);
  border-radius: 999px;
}

.symbol-track::after {
  left: 20px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
}

.symbol-calm::before {
  left: 10px;
  right: 10px;
  top: 17px;
  border-top: 3px solid var(--copper);
  border-radius: 50%;
}

.symbol-calm::after {
  left: 14px;
  right: 14px;
  top: 27px;
  border-top: 3px solid var(--sand);
  border-radius: 50%;
}

.split-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 4rem;
}

.tag-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  padding: 1.35rem;
}

.tag-panel span,
.solution-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(184, 75, 41, 0.16);
  border-radius: var(--radius);
  background: rgba(244, 227, 200, 0.42);
  color: var(--copper);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.48rem 0.68rem;
}

.solutions-section {
  overflow: hidden;
}

.solutions-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 4rem;
}

.product-preview {
  position: relative;
  padding: 1rem;
}

.product-preview::before {
  position: absolute;
  left: 4%;
  right: 4%;
  top: -22px;
  z-index: -1;
  height: 60px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(220, 96, 52, 0.18), rgba(214, 163, 84, 0.13));
  content: "";
  filter: blur(22px);
}

.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0.45rem 1rem;
}

.preview-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.preview-topbar strong {
  display: block;
  font-size: 1.12rem;
}

.topbar-dots {
  display: flex;
  gap: 0.35rem;
}

.topbar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(214, 163, 84, 0.45);
}

.preview-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem 0 0.8rem;
}

.summary-card {
  min-height: 128px;
  border: 1px solid rgba(149, 101, 54, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.75);
  padding: 1rem;
}

.summary-card span,
.summary-card small,
.module-row small {
  color: var(--muted);
}

.summary-card strong {
  display: block;
  margin: 0.22rem 0 0.18rem;
  color: var(--copper);
  font-size: 2.2rem;
  line-height: 1;
}

.summary-card.accent {
  background: linear-gradient(145deg, rgba(240, 207, 145, 0.34), rgba(255, 250, 241, 0.78));
}

.module-list {
  display: grid;
  gap: 0.65rem;
}

.module-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.78rem;
  min-height: 76px;
  border: 1px solid rgba(149, 101, 54, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.62);
  padding: 0.78rem;
}

.module-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--sand-soft));
  box-shadow: 0 0 0 5px rgba(214, 163, 84, 0.16);
}

.module-row strong,
.module-row small {
  display: block;
}

.module-row em {
  border-radius: var(--radius);
  background: rgba(123, 129, 100, 0.13);
  color: #556044;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  padding: 0.25rem 0.45rem;
}

.solution-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.product-case {
  padding-top: 5.5rem;
}

.case-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 2rem;
}

.case-summary,
.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: var(--soft-shadow);
}

.case-summary {
  padding: 1.25rem;
}

.case-summary strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--forest);
  font-size: 1.05rem;
}

.case-summary p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-stage {
  position: relative;
  border: 1px solid rgba(40, 92, 60, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 250, 241, 0.94), rgba(231, 241, 234, 0.58)),
    rgba(255, 250, 241, 0.86);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  overflow: hidden;
}

.product-stage::before {
  position: absolute;
  left: 9%;
  right: 9%;
  top: -34px;
  height: 82px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(194, 79, 44, 0.16), rgba(40, 92, 60, 0.12));
  content: "";
  filter: blur(24px);
}

.stage-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(40, 92, 60, 0.16);
  padding: 0.35rem 0.15rem 1rem;
}

.stage-header strong {
  display: block;
  color: var(--forest);
  font-size: 1.2rem;
}

.privacy-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(40, 92, 60, 0.2);
  border-radius: var(--radius);
  background: rgba(231, 241, 234, 0.78);
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.2;
  padding: 0.42rem 0.62rem;
}

.workflow-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.15rem 0;
}

.workflow-line span {
  position: relative;
  display: grid;
  min-height: 72px;
  place-items: center;
  border: 1px solid rgba(40, 92, 60, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.72);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
  text-align: center;
  padding: 0.56rem;
}

.workflow-line span::before {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(40, 92, 60, 0.12);
  color: var(--forest);
  content: "";
}

.workflow-line .done::before {
  background: rgba(40, 92, 60, 0.42);
  color: #fffaf1;
}

.workflow-line .active {
  border-color: rgba(40, 92, 60, 0.32);
  background: rgba(231, 241, 234, 0.72);
  color: var(--forest);
}

.workflow-line .active::before {
  background: var(--forest);
  color: #fffaf1;
  content: "3";
}

.app-showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.82rem;
}

.app-screen {
  min-height: 222px;
  border: 1px solid rgba(40, 92, 60, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 8px 22px rgba(40, 92, 60, 0.06);
  padding: 0.9rem;
}

.upload-screen,
.review-screen,
.talk-screen {
  grid-column: span 4;
}

.plan-screen,
.document-screen {
  grid-column: span 6;
}

.app-screen-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.82rem;
}

.app-screen-header span {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 820;
}

.app-screen-header small {
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 760;
  text-align: right;
}

.drop-zone {
  display: grid;
  min-height: 128px;
  place-items: center;
  border: 1px dashed rgba(40, 92, 60, 0.32);
  border-radius: var(--radius);
  background: rgba(231, 241, 234, 0.45);
  color: var(--forest);
  text-align: center;
  padding: 1rem;
}

.drop-zone small {
  color: var(--muted);
}

.file-icon {
  display: block;
  width: 32px;
  height: 38px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(255, 252, 247, 0.95) 18% 32%, transparent 32%),
    linear-gradient(180deg, rgba(194, 79, 44, 0.22), rgba(214, 163, 84, 0.18));
}

.mini-button {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 0.72rem;
  border: 1px solid rgba(40, 92, 60, 0.42);
  border-radius: var(--radius);
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 780;
}

.token-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-radius: var(--radius);
  background: var(--forest-soft);
  padding: 0.72rem;
}

.token-row span {
  border-radius: 5px;
  background: var(--forest);
  color: #fffaf1;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.24rem 0.38rem;
}

.blur-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.blur-list span {
  height: 34px;
  border: 1px solid rgba(214, 163, 84, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(255, 244, 226, 0.9), rgba(255, 250, 241, 0.92));
}

.blur-list span::before {
  display: block;
  width: 68%;
  height: 8px;
  margin: 12px 0 0 12px;
  border-radius: 999px;
  background: rgba(194, 79, 44, 0.28);
  content: "";
  filter: blur(3px);
}

.question-card,
.plan-item {
  border: 1px solid rgba(40, 92, 60, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.76);
  padding: 0.72rem;
}

.question-card + .question-card,
.plan-item + .plan-item {
  margin-top: 0.64rem;
}

.question-card strong,
.plan-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.35;
}

.question-card span {
  display: block;
  height: 54px;
  margin-top: 0.58rem;
  border: 1px solid rgba(40, 92, 60, 0.18);
  border-radius: 6px;
  background: #fffdf9;
}

.plan-item {
  border-left: 4px solid rgba(194, 79, 44, 0.48);
}

.plan-item small {
  color: var(--muted);
}

.document-page {
  min-height: 152px;
  border: 1px solid rgba(40, 92, 60, 0.16);
  border-radius: var(--radius);
  background: #fffdf9;
  padding: 1rem;
}

.document-page strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--forest);
  font-size: 0.82rem;
}

.document-page p {
  margin-bottom: 0.78rem;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.62;
}

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

.case-card {
  padding: 1.2rem;
}

.case-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(194, 79, 44, 0.42);
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 820;
}

.case-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.anonymizer-section {
  padding-top: 4rem;
}

.anonymizer-product {
  border: 1px solid rgba(40, 92, 60, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 250, 241, 0.92), rgba(231, 241, 234, 0.52)),
    rgba(255, 250, 241, 0.86);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.anonymizer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.15rem 0.15rem 1rem;
}

.anonymizer-top span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.anonymizer-top strong {
  display: block;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.08;
}

.anonymizer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.anonymizer-actions span {
  min-height: 34px;
  border: 1px solid rgba(40, 92, 60, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.76);
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 730;
  text-transform: none;
  padding: 0.42rem 0.62rem;
}

.anonymizer-ui {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.88fr);
  gap: 1rem;
}

.anon-sidebar,
.anon-output {
  border: 1px solid rgba(40, 92, 60, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.92);
}

.anon-sidebar {
  padding: 1rem;
}

.anon-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  border: 1px solid rgba(40, 92, 60, 0.12);
  border-radius: var(--radius);
  background: var(--forest-soft);
  padding: 0.35rem;
}

.anon-tabs span {
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.2;
  padding: 0.5rem 0.4rem;
  text-align: center;
}

.anon-tabs span:first-child {
  background: #fffdf9;
  color: var(--ink);
  box-shadow: 0 5px 16px rgba(40, 92, 60, 0.08);
}

.anon-upload {
  display: grid;
  min-height: 168px;
  place-items: center;
  margin-top: 1rem;
  border: 1px dashed rgba(40, 92, 60, 0.36);
  border-radius: var(--radius);
  background: rgba(231, 241, 234, 0.32);
  color: var(--forest);
  text-align: center;
  padding: 1rem;
}

.upload-symbol {
  position: relative;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(40, 92, 60, 0.66);
  border-top: 0;
  border-radius: 0 0 7px 7px;
}

.upload-symbol::before {
  position: absolute;
  left: 50%;
  top: -9px;
  width: 13px;
  height: 13px;
  border-left: 2px solid rgba(40, 92, 60, 0.66);
  border-top: 2px solid rgba(40, 92, 60, 0.66);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.upload-symbol::after {
  position: absolute;
  left: 50%;
  top: -7px;
  width: 2px;
  height: 28px;
  background: rgba(40, 92, 60, 0.66);
  content: "";
  transform: translateX(-50%);
}

.anon-upload strong {
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 720;
}

.anon-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0;
}

.anon-options span {
  position: relative;
  color: var(--muted);
  font-size: 0.85rem;
  padding-left: 1.32rem;
}

.anon-options span::before {
  position: absolute;
  left: 0;
  top: 0.22rem;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(40, 92, 60, 0.4);
  border-radius: 3px;
  background: #fffdf9;
  content: "";
}

.anon-button {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #147a62;
  color: #fffaf1;
  font-weight: 790;
}

.anon-output {
  overflow: hidden;
}

.anon-output-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(40, 92, 60, 0.14);
  padding: 1rem 1rem 0.85rem;
}

.anon-output-header strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.anon-output-header span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 720;
}

.anon-output pre {
  max-height: 520px;
  margin: 0;
  overflow: auto;
  background: #fffdf9;
  color: #06130e;
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.7;
  white-space: pre-wrap;
  padding: 1rem;
}

.anon-output-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid rgba(40, 92, 60, 0.14);
  background: rgba(255, 252, 247, 0.86);
  padding: 0.8rem 1rem;
}

.anon-output-actions span {
  border: 1px solid rgba(40, 92, 60, 0.16);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 720;
  padding: 0.46rem 0.64rem;
}

.contact-section {
  padding-bottom: 7rem;
}

.contact-details {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.55rem;
}

.contact-details a {
  width: fit-content;
  border-bottom: 1px solid rgba(184, 75, 41, 0.28);
  color: var(--copper);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
}

.field-group {
  display: grid;
  gap: 0.38rem;
}

.field-group label {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 720;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(149, 101, 54, 0.23);
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.92);
  color: var(--ink);
  padding: 0.86rem 0.92rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.field-group input:hover,
.field-group textarea:hover,
.field-group input:focus,
.field-group textarea:focus {
  border-color: rgba(220, 96, 52, 0.46);
  background: #fffdf9;
  box-shadow: 0 0 0 4px rgba(220, 96, 52, 0.08);
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--sage);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid rgba(149, 101, 54, 0.16);
  background: rgba(244, 227, 200, 0.4);
  padding: 2rem 0;
}

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

.footer-logo {
  width: 240px;
  height: auto;
  margin-bottom: 0.75rem;
  mix-blend-mode: multiply;
  object-fit: contain;
}

.site-footer p {
  max-width: 560px;
  margin-bottom: 0;
}

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

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 600ms ease,
      transform 600ms ease;
  }

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

  .sun-disc {
    animation: breathe 7s ease-in-out infinite;
  }

  .dot-one,
  .dot-two,
  .dot-three {
    animation: float-dot 5s ease-in-out infinite;
  }

  .dot-two {
    animation-delay: 500ms;
  }

  .dot-three {
    animation-delay: 900ms;
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.015);
  }
}

@keyframes float-dot {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 980px) {
  .section {
    padding: 5.25rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .solutions-grid,
  .case-intro,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-art {
    justify-self: center;
    max-width: 360px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.12rem;
  }

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

  .case-intro {
    align-items: start;
    margin-bottom: 1.5rem;
  }

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

  .app-showcase-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .upload-screen,
  .review-screen,
  .talk-screen,
  .plan-screen,
  .document-screen {
    grid-column: span 3;
  }

  .soft-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .container,
  .nav-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-shell {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 0.75rem 0;
  }

  .brand-logo {
    width: 232px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav a {
    flex: 1;
    text-align: center;
  }

  .hero {
    padding-top: 4rem;
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .preview-summary {
    grid-template-columns: 1fr;
  }

  .stage-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .anonymizer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .anonymizer-actions {
    justify-content: flex-start;
  }

  .anonymizer-ui {
    grid-template-columns: 1fr;
  }

  .anon-output pre {
    max-height: 420px;
  }

  .workflow-line {
    grid-template-columns: 1fr;
  }

  .workflow-line span {
    min-height: 54px;
    grid-template-columns: 32px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }

  .app-showcase-grid {
    grid-template-columns: 1fr;
  }

  .upload-screen,
  .review-screen,
  .talk-screen,
  .plan-screen,
  .document-screen {
    grid-column: 1;
  }

  .module-row {
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .module-row em {
    justify-self: start;
    grid-column: 2;
  }

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

  .footer-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 440px) {
  .section {
    padding: 4.25rem 0;
  }

  .site-nav a {
    padding-inline: 0.42rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .hero-art {
    max-width: 280px;
  }

  .contact-form,
  .soft-card,
  .tag-panel,
  .product-preview,
  .product-stage,
  .anonymizer-product,
  .case-summary,
  .case-card {
    padding: 1rem;
  }

  .anon-tabs {
    grid-template-columns: 1fr;
  }

  .anon-output pre {
    font-size: 0.72rem;
  }
}
