:root {
  --cream: #f7f3ec;
  --cream-2: #ede8df;
  --sand: #c7a76a;
  --cocoa: #262220;
  --cocoa-2: #534a43;
  --ink: #221f1d;
  --muted: #746b63;
  --terracotta: #9f4938;
  --terracotta-dark: #7f2638;
  --sage: #667061;
  --line: rgba(38, 34, 32, 0.13);
  --line-strong: rgba(38, 34, 32, 0.24);
  --white: #fffdf8;
  --max: 1160px;
  --radius: 8px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(184, 95, 66, 0.28);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--terracotta);
  color: var(--white);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--cocoa);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

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

.section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 239, 0.85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: var(--cocoa);
  text-decoration: none;
  vertical-align: middle;
}

.brand img,
.footer-brand img {
  display: block;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  object-fit: contain;
  object-position: center center;
  margin: 0;
  padding: 0;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-weight: 500;
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--cocoa);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 140ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--terracotta-dark);
}

.nav-instagram {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--cocoa);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  padding-top: clamp(72px, 10vw, 128px);
  padding-bottom: clamp(72px, 9vw, 120px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -22%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  max-width: 920px;
  max-height: 920px;
  background: radial-gradient(closest-side,
    rgba(184, 155, 94, 0.32) 0%,
    rgba(184, 155, 94, 0.18) 38%,
    rgba(184, 155, 94, 0.06) 62%,
    rgba(184, 155, 94, 0) 78%);
  filter: blur(12px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -30%;
  left: -8%;
  width: 50vw;
  height: 50vw;
  max-width: 640px;
  max-height: 640px;
  background: radial-gradient(closest-side,
    rgba(111, 37, 53, 0.10) 0%,
    rgba(111, 37, 53, 0.04) 50%,
    rgba(111, 37, 53, 0) 78%);
  filter: blur(20px);
  pointer-events: none;
}

.micro {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.micro::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta-dark);
}

h1,
h2,
h3 {
  color: var(--cocoa);
  line-height: 1.08;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 400;
}

h1 {
  max-width: 18ch;
  margin: 0 auto 28px;
  font-size: clamp(40px, 5.4vw, 68px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--terracotta-dark);
  font-style: italic;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4.4vw, 58px);
  letter-spacing: -0.025em;
}

h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.hero-lede {
  max-width: 56ch;
  margin: 0 auto 36px;
  color: var(--cocoa);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  text-align: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 16px;
}

.cta-note {
  max-width: 58ch;
  margin: 0 auto 58px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  text-align: center;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.hero__meta-k {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--terracotta-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

.hero__meta-v {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--cocoa);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

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

.btn--primary {
  background: var(--terracotta-dark);
  color: var(--white);
  border-color: var(--terracotta-dark);
}

.btn--primary:hover { background: #6e2031; border-color: #6e2031; }

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--cocoa);
}

.btn--ghost:hover { border-color: var(--cocoa); }

.arr { font-family: var(--font-serif); font-style: italic; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-radius: 6px;
  padding: 20px 38px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: clamp(18px, 1.8vw, 27px);
  font-weight: 500;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--terracotta-dark);
  color: var(--white);
}

.button-primary span {
  margin-left: 10px;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #6e2031;
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--cocoa);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--terracotta);
  background: rgba(184, 95, 66, 0.08);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 90px);
}

.problem {
  background: var(--white);
}

.rich-text p {
  margin: 0;
  color: var(--cocoa-2);
  font-size: 18px;
}

.rich-text p + p {
  margin-top: 18px;
}

.section-copy {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.section-head {
  margin-bottom: clamp(32px, 5vw, 64px);
}

.audiences {
  background: var(--cream);
}

.audiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.audience-card {
  min-height: 230px;
  background: var(--white);
  padding: 26px 24px;
}

.audience-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--terracotta-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card {
  min-height: 260px;
  padding: 28px 24px;
  background: var(--cream);
}

.card-number,
.method-step span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--terracotta-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.card p,
.method-step p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15.5px;
}

.method {
  background: #252321;
  color: var(--white);
}

.method h2,
.method h3 {
  color: var(--white);
}

.method .eyebrow,
.method-step span {
  color: var(--sand);
}

.method-list {
  border-top: 1px solid rgba(255, 250, 241, 0.22);
}

.method-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 250, 241, 0.18);
}

.method-step p {
  max-width: 760px;
  color: rgba(255, 250, 241, 0.74);
}

.deliverables {
  background: var(--cream-2);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.check-list li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--cocoa);
  font-size: 18px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  transform: rotate(-45deg);
}

.faq {
  background: var(--white);
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  padding: 0 22px;
}

summary {
  padding: 20px 0;
  color: var(--cocoa);
  font-weight: 700;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
}

.nasida-ai-demo {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding-block: clamp(38px, 4vw, 40px);
  scroll-margin-top: 84px;
}

.nasida-ai-demo__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.nasida-ai-demo__header h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1;
}

.nasida-ai-demo__note {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nasida-ai-demo__rail {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 1px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--terracotta) rgba(38, 34, 32, 0.1);
}

.nasida-ai-demo__rail:focus-visible {
  outline: 3px solid rgba(184, 95, 66, 0.28);
  outline-offset: 6px;
}

.workflow-scene {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(53, 40, 32, 0.11);
}

.workflow-scene__visual {
  position: relative;
  height: clamp(240px, 25vw, 270px);
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(38, 34, 32, 0.025) 1px, transparent 1px),
    var(--white);
  background-size: 100% 40px, auto;
}

.workflow-scene__caption {
  display: grid;
  gap: 6px;
  min-height: 90px;
  padding: 14px clamp(18px, 3vw, 26px);
  border-top: 1px solid var(--line);
  background: var(--cream-2);
}

.workflow-scene__caption span,
.workflow-paper span,
.workflow-node span,
.workflow-box span,
.workflow-flow-list > span {
  color: var(--terracotta);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-scene__caption h3 {
  margin: 0;
  color: var(--cocoa);
  font-family: var(--font-serif);
  font-size: clamp(25px, 2.45vw, 31px);
  font-weight: 400;
  line-height: 1.08;
}

.workflow-scene__caption p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.workflow-paper,
.workflow-node,
.workflow-box,
.workflow-flow-list div {
  position: absolute;
  padding: 12px 14px;
  border: 1px solid rgba(38, 34, 32, 0.13);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--white) 92%, var(--cream));
  box-shadow: 0 8px 22px rgba(53, 40, 32, 0.1);
}

.workflow-paper strong,
.workflow-node strong,
.workflow-box strong,
.workflow-flow-list b {
  display: block;
  margin-top: 5px;
  color: var(--cocoa);
  font-size: 15px;
  line-height: 1.25;
}

.workflow-paper i {
  display: block;
  width: 74%;
  height: 5px;
  margin-top: 7px;
  border-radius: 999px;
  background: rgba(38, 34, 32, 0.12);
}

.workflow-paper i:nth-of-type(2) {
  width: 62%;
}

.workflow-paper i:nth-of-type(3) {
  width: 48%;
}

.workflow-paper--note {
  left: 3%;
  top: 9%;
  width: 150px;
  transform: rotate(-9deg);
  background: #f6e6bd;
}

.workflow-paper--mail {
  left: 24%;
  top: 13%;
  width: 190px;
  transform: rotate(-4deg);
}

.workflow-paper--pdf {
  left: 52%;
  top: 22%;
  width: 170px;
  transform: rotate(4deg);
}

.workflow-paper--chat {
  right: 4%;
  top: 13%;
  width: 190px;
  transform: rotate(-2deg);
}

.workflow-paper--chat strong {
  background: #ddf7c8;
  padding: 8px 10px;
  border-radius: 7px;
}

.workflow-paper--sheet {
  left: 9%;
  bottom: 25%;
  width: 185px;
  transform: rotate(5deg);
}

.workflow-paper--todo {
  left: 42%;
  bottom: 13%;
  width: 190px;
  transform: rotate(2deg);
}

.workflow-paper--late {
  right: 6%;
  bottom: 16%;
  width: 140px;
  transform: rotate(-4deg);
}

.workflow-paper--late strong {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 400;
}

.workflow-scene__visual--agent {
  display: grid;
  place-items: center;
  background: var(--white);
}

.workflow-agent-core {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--cocoa);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 44px;
  font-style: italic;
  box-shadow: 0 18px 44px rgba(53, 40, 32, 0.22);
}

.workflow-orbit {
  position: absolute;
  border: 1px dashed rgba(38, 34, 32, 0.18);
  border-radius: 50%;
}

.workflow-orbit--one {
  width: 250px;
  height: 250px;
}

.workflow-orbit--two {
  width: 420px;
  height: 420px;
}

.workflow-node {
  width: 190px;
}

.workflow-node--a {
  left: 8%;
  top: 18%;
}

.workflow-node--b {
  right: 8%;
  top: 22%;
}

.workflow-node--c {
  right: 6%;
  bottom: 24%;
}

.workflow-node--d {
  right: 24%;
  bottom: 8%;
}

.workflow-node--e {
  left: 6%;
  bottom: 30%;
}

.workflow-node::before {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(70px, 12vw, 150px);
  height: 1px;
  background: rgba(38, 34, 32, 0.18);
}

.workflow-node--a::before,
.workflow-node--e::before {
  left: 100%;
}

.workflow-node--b::before,
.workflow-node--c::before,
.workflow-node--d::before {
  right: 100%;
}

.workflow-scene__visual--flow {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(280px, 1.8fr) minmax(150px, 0.8fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  padding: clamp(20px, 4vw, 46px);
  background: var(--white);
}

.workflow-box,
.workflow-flow-list,
.workflow-flow-list div {
  position: relative;
}

.workflow-box {
  padding: 18px;
  border-left: 3px solid var(--cocoa);
}

.workflow-box--output {
  border-left-color: var(--terracotta);
}

.workflow-box small,
.workflow-flow-list small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.workflow-flow-list {
  display: grid;
  gap: 10px;
}

.workflow-flow-list > span {
  justify-self: center;
  margin-bottom: 4px;
}

.workflow-flow-list div {
  position: relative;
  min-height: 58px;
  padding-left: 58px;
}

.workflow-flow-list div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--cream-2);
  transform: translateY(-50%);
}

.workflow-scene__visual--method {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 36px 20px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 58%, rgba(217, 119, 87, 0.13), transparent 36%),
    var(--white);
}

.workflow-scene__visual--method img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.workflow-scene__visual--method > span {
  color: var(--cocoa);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.workflow-scene__visual--method h3 {
  margin: 0;
  color: var(--cocoa);
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 400;
  line-height: 1.04;
}

.workflow-scene__visual--method p {
  max-width: 560px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 17px;
}

.workflow-scene__visual--method .btn {
  width: fit-content;
}

.nasida-ai-demo__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.nasida-ai-demo__steps a {
  display: grid;
  gap: 5px;
  padding: 11px 16px 0;
  border-top: 2px solid transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.nasida-ai-demo__steps a:hover,
.nasida-ai-demo__steps a:focus-visible {
  border-top-color: var(--terracotta);
  color: var(--cocoa);
}

.nasida-ai-demo__steps span {
  color: var(--terracotta);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.final-cta {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.contact-grid h2 {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
}

.contact-copy {
  max-width: 480px;
  margin: 16px 0 24px;
  color: var(--cocoa-2);
  font-size: 15px;
}

.contact-note {
  display: grid;
  gap: 2px;
  max-width: 440px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-note strong {
  color: var(--cocoa);
}

.contact-note span {
  color: var(--muted);
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(16px, 3vw, 24px);
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  color: var(--cocoa);
  font-weight: 700;
  font-size: 13px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--cream);
  color: var(--ink);
  padding: 9px 11px;
  font-size: 14px;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(184, 95, 66, 0.22);
  border-color: var(--terracotta);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--terracotta-dark);
}

.privacy-check a {
  color: var(--terracotta-dark);
  font-weight: 700;
}

.form-hint {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-hint a {
  color: var(--terracotta-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.form-hint--success,
.form-hint--error {
  border-radius: 6px;
  padding: 12px 14px;
}

.form-hint--success {
  background: rgba(102, 112, 97, 0.13);
  color: #394235;
}

.form-hint--error {
  background: rgba(184, 95, 66, 0.13);
  color: var(--terracotta-dark);
}

.form-hint code {
  color: var(--cocoa);
}

.site-footer {
  background: #252321;
  color: var(--white);
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: clamp(28px, 5vw, 72px);
}

.footer-brand {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-instagram {
  display: inline-flex;
  color: rgba(255, 250, 241, 0.72);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-instagram:hover {
  color: var(--white);
}

.site-footer p,
.site-footer li,
.footer-bottom {
  color: rgba(255, 250, 241, 0.72);
}

.footer-label {
  margin: 0 0 14px;
  color: var(--sand);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.site-footer a {
  color: var(--white);
  text-decoration-color: rgba(255, 250, 241, 0.45);
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 241, 0.18);
  font-size: 13px;
}

.legal-page {
  background: var(--cream);
}

.legal-main {
  padding: clamp(56px, 8vw, 96px) 0;
}

.legal-main article {
  max-width: 820px;
}

.legal-main h1 {
  font-size: clamp(38px, 5vw, 62px);
}

.legal-main h2 {
  margin-top: 42px;
  font-family: var(--font-sans);
  font-size: 22px;
  letter-spacing: 0;
}

.legal-main p,
.legal-main li {
  color: var(--cocoa-2);
}

@media (max-width: 980px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .nasida-ai-demo__header {
    grid-template-columns: 1fr;
  }

  .nasida-ai-demo__note {
    margin-bottom: 0;
  }
}

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

  .site-header__inner {
    padding: 12px 14px;
  }

  .brand img,
  .footer-brand img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 40px rgba(53, 40, 32, 0.16);
    transform-origin: top;
    transform: scaleY(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 12px;
  }

  .section {
    padding: 56px 0;
  }

  .micro::before {
    display: none;
  }

  .micro {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    line-height: 1.55;
    letter-spacing: 0.12em;
    overflow-wrap: anywhere;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(36px, 11vw, 46px);
    letter-spacing: -0.015em;
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
    letter-spacing: -0.015em;
  }

  h1,
  h2,
  h3,
  p,
  li,
  a,
  dd,
  dt,
  summary,
  span {
    overflow-wrap: break-word;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 14px;
  }

  .cta-note {
    margin-bottom: 42px;
    font-size: 14px;
  }

  .hero__meta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding: 15px 18px;
    font-size: 18px;
  }

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

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

  .audience-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .method-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nasida-ai-demo {
    padding-block: 48px;
  }

  .nasida-ai-demo__header h2 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .nasida-ai-demo__note {
    font-size: 11px;
  }

  .workflow-scene__visual {
    height: 240px;
  }

  .workflow-scene__caption {
    min-height: 116px;
    padding: 18px;
  }

  .workflow-paper,
  .workflow-node,
  .workflow-box,
  .workflow-flow-list div {
    padding: 9px 10px;
  }

  .workflow-paper strong,
  .workflow-node strong,
  .workflow-box strong,
  .workflow-flow-list b {
    font-size: 12px;
  }

  .workflow-paper span,
  .workflow-node span,
  .workflow-box span,
  .workflow-flow-list > span {
    font-size: 9px;
  }

  .workflow-paper--note {
    left: 2%;
    top: 8%;
    width: 118px;
  }

  .workflow-paper--mail {
    left: 34%;
    top: 12%;
    width: 142px;
  }

  .workflow-paper--pdf {
    left: 10%;
    top: 44%;
    width: 130px;
  }

  .workflow-paper--chat {
    right: 2%;
    top: 38%;
    width: 138px;
  }

  .workflow-paper--sheet {
    left: 5%;
    bottom: 8%;
    width: 138px;
  }

  .workflow-paper--todo {
    left: 39%;
    bottom: 12%;
    width: 146px;
  }

  .workflow-paper--late {
    display: none;
  }

  .workflow-agent-core {
    width: 88px;
    height: 88px;
    font-size: 34px;
  }

  .workflow-orbit--one {
    width: 170px;
    height: 170px;
  }

  .workflow-orbit--two {
    width: 270px;
    height: 270px;
  }

  .workflow-node {
    width: 132px;
  }

  .workflow-node::before {
    display: none;
  }

  .workflow-node--a {
    left: 4%;
    top: 10%;
  }

  .workflow-node--b {
    right: 4%;
    top: 14%;
  }

  .workflow-node--c {
    right: 3%;
    bottom: 18%;
  }

  .workflow-node--d {
    right: 28%;
    bottom: 4%;
  }

  .workflow-node--e {
    left: 3%;
    bottom: 24%;
  }

  .workflow-scene__visual--flow {
    grid-template-columns: 0.8fr 1.35fr 0.8fr;
    gap: 8px;
    align-content: center;
    padding: 12px;
  }

  .workflow-flow-list {
    gap: 6px;
  }

  .workflow-flow-list > span {
    justify-self: center;
    text-align: center;
  }

  .workflow-flow-list div {
    min-height: 42px;
    padding-left: 32px;
  }

  .workflow-flow-list div::before {
    left: 8px;
    width: 16px;
    height: 16px;
  }

  .workflow-scene__visual--method {
    height: 270px;
  }

  .workflow-scene__visual--method h3 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .workflow-scene__visual--method p {
    font-size: 15px;
  }

  .workflow-scene__visual--method .btn {
    width: 100%;
    max-width: 330px;
  }

  .nasida-ai-demo__steps {
    grid-auto-flow: column;
    grid-auto-columns: minmax(150px, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .nasida-ai-demo__steps a {
    scroll-snap-align: start;
    padding-inline: 10px;
  }
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--cocoa-2);
  font-size: 14px;
}

.legal-nav a {
  text-decoration: none;
}

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

  .nasida-ai-demo__rail {
    scroll-behavior: auto;
  }
}
