:root {
  --background: #f9f9fb;
  --surface: #ffffff;
  --surface-muted: #f3f3f5;
  --surface-subtle: #eeeff3;
  --border: #d9d6e2;
  --border-strong: #c9c4d2;
  --text: #1a1c1d;
  --text-soft: #605a7b;
  --text-muted: #797582;
  --heading: #060024;
  --indigo: #200a5e;
  --indigo-deep: #110037;
  --indigo-soft: #6152a2;
  --lavender: #e6deff;
  --butter: #ffe566;
  --butter-strong: #f6d63e;
  --green: #1d6e57;
  --green-soft: #e6f5ef;
  --danger: #ba1a1a;
  --shadow: rgba(6, 0, 36, 0.11);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body::selection {
  color: var(--heading);
  background: var(--butter);
}

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

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

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(249, 249, 251, 0.88);
  border-bottom: 1px solid rgba(201, 196, 210, 0.55);
  backdrop-filter: blur(18px);
}

.site-header--hero {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark img {
  width: 154px;
  height: auto;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--indigo);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a,
.text-link {
  border-radius: 999px;
  padding: 9px 13px;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--indigo);
  background: rgba(230, 222, 255, 0.75);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

button.button {
  font-family: inherit;
  cursor: pointer;
}

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

.button-primary {
  color: #ffffff;
  background: var(--indigo);
  box-shadow: 0 14px 30px rgba(32, 10, 94, 0.23);
}

.button-primary:hover {
  background: var(--indigo-deep);
}

.button-light {
  color: var(--heading);
  background: var(--surface);
  border-color: rgba(201, 196, 210, 0.72);
}

.button-light:hover {
  border-color: var(--indigo-soft);
  box-shadow: 0 12px 26px rgba(6, 0, 36, 0.08);
}

.button-play {
  color: var(--heading);
  background: var(--butter);
  border-color: rgba(82, 70, 0, 0.14);
  box-shadow: 0 16px 34px rgba(82, 70, 0, 0.16);
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  padding: 128px 0 68px;
  background:
    linear-gradient(90deg, rgba(32, 10, 94, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(32, 10, 94, 0.05) 1px, transparent 1px),
    #f9f9fb;
  background-size: 58px 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(255, 229, 102, 0.42) 0 18%, transparent 18% 100%),
    linear-gradient(154deg, transparent 0 55%, rgba(230, 222, 255, 0.86) 55% 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -10vh;
  width: 52vw;
  height: 62vh;
  background: linear-gradient(145deg, rgba(32, 10, 94, 0.08), rgba(255, 229, 102, 0.22));
  transform: rotate(-8deg);
  border-radius: 48px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  max-width: 690px;
  animation: rise-in 680ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--indigo);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 22px;
  color: var(--heading);
  font-size: clamp(3.7rem, 8.2vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-copy h1 span {
  display: block;
  color: var(--indigo);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--text-soft);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  margin-bottom: 28px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-note span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  animation: float-in 860ms 140ms ease both;
}

.phone-shell {
  position: relative;
  width: min(100%, 365px);
  min-height: 632px;
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(135deg, #060024, #271065 58%, #12033a);
  box-shadow: 0 42px 80px rgba(6, 0, 36, 0.28);
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 604px;
  padding: 34px 20px 22px;
  border-radius: 30px;
  background: #fbfbfd;
  overflow: hidden;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.phone-logo {
  width: 118px;
}

.phone-bell {
  width: 31px;
  height: 31px;
  border-radius: 10px;
  background: var(--surface-subtle);
  position: relative;
}

.phone-bell::before {
  content: "";
  position: absolute;
  inset: 8px 9px 9px;
  border-radius: 9px 9px 5px 5px;
  border: 2px solid var(--text-soft);
  border-bottom-width: 4px;
}

.phone-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.metric-tile,
.phone-action,
.record-line,
.measure-sheet {
  background: var(--surface);
  border: 1px solid rgba(226, 226, 228, 0.88);
  box-shadow: 0 14px 30px rgba(6, 0, 36, 0.06);
}

.metric-tile {
  min-height: 95px;
  padding: 17px 15px;
  border-radius: 18px;
}

.metric-label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-value {
  color: var(--heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.metric-value small {
  color: var(--butter-strong);
  font-size: 1.2rem;
}

.focus-panel {
  position: relative;
  margin-bottom: 14px;
  padding: 22px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #10003c, #260a66 70%, #18004f);
  overflow: hidden;
  box-shadow: 0 22px 38px rgba(32, 10, 94, 0.2);
}

.focus-panel::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 24px;
  width: 76px;
  height: 98px;
  border-radius: 18px 18px 13px 13px;
  background:
    linear-gradient(90deg, transparent 0 29%, rgba(255, 255, 255, 0.1) 29% 71%, transparent 71%),
    rgba(230, 222, 255, 0.15);
  transform: rotate(0deg);
}

.focus-panel h3 {
  position: relative;
  z-index: 1;
  max-width: 190px;
  margin-bottom: 4px;
  font-size: 1.45rem;
  line-height: 1.18;
}

.focus-panel p {
  position: relative;
  z-index: 1;
  margin-bottom: 19px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.progress-track {
  position: relative;
  z-index: 1;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: var(--butter);
  animation: progress-glow 2600ms ease-in-out infinite;
}

.phone-action {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--heading);
  font-weight: 800;
}

.action-dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--heading);
  font-weight: 900;
}

.record-stack {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.record-line {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
}

.record-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--surface-subtle);
}

.record-name {
  display: block;
  color: var(--heading);
  font-weight: 900;
  line-height: 1.1;
}

.record-type {
  display: block;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.record-status {
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--indigo);
  background: var(--lavender);
  font-size: 0.66rem;
  font-weight: 900;
  white-space: nowrap;
}

.measure-sheet {
  position: absolute;
  right: -38px;
  bottom: 86px;
  width: 205px;
  padding: 18px;
  border-radius: 20px;
  transform: rotate(3deg);
}

.measure-sheet h4 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: 0.92rem;
}

.measure-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-top: 1px solid var(--surface-subtle);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.measure-row strong {
  color: var(--heading);
}

.section {
  padding: 86px 0;
}

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

.section-indigo {
  color: #ffffff;
  background: var(--indigo-deep);
}

.section-intro {
  max-width: 730px;
  margin-bottom: 38px;
}

.section-intro.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--indigo-soft);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-indigo .section-kicker {
  color: var(--butter);
}

h2 {
  margin-bottom: 14px;
  color: var(--heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.section-indigo h2 {
  color: #ffffff;
}

.section-intro p,
.large-copy {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.section-indigo .section-intro p,
.section-indigo .large-copy {
  color: rgba(255, 255, 255, 0.72);
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.workspace-copy {
  max-width: 680px;
}

.workspace-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.workspace-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--text-soft);
}

.check-dot {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--heading);
  background: var(--butter);
  font-weight: 900;
}

.atelier-board {
  padding: 28px;
  border: 1px solid rgba(201, 196, 210, 0.7);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f6f4ff);
  box-shadow: 0 26px 60px rgba(6, 0, 36, 0.1);
}

.board-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.board-title {
  color: var(--heading);
  font-weight: 900;
}

.board-pill {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 0.75rem;
  font-weight: 900;
}

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

.timeline-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--surface-subtle);
}

.timeline-step {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--heading);
  background: var(--butter);
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline-title {
  display: block;
  color: var(--heading);
  font-weight: 900;
}

.timeline-meta {
  display: block;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.timeline-value {
  color: var(--indigo);
  font-size: 0.84rem;
  font-weight: 900;
}

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

.benefit-card {
  min-height: 196px;
  padding: 24px;
  border: 1px solid rgba(201, 196, 210, 0.62);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 16px 36px rgba(6, 0, 36, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(97, 82, 162, 0.48);
  box-shadow: 0 24px 50px rgba(6, 0, 36, 0.09);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--heading);
  background: var(--lavender);
  font-weight: 900;
}

.benefit-card:nth-child(3n) .benefit-icon,
.benefit-card:nth-child(7) .benefit-icon {
  background: var(--butter);
}

.benefit-card:nth-child(4n) .benefit-icon {
  color: var(--green);
  background: var(--green-soft);
}

.benefit-card h3 {
  margin-bottom: 8px;
  color: var(--heading);
  font-size: 1.06rem;
  line-height: 1.25;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.flow-wrap {
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(255, 229, 102, 0.13) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    rgba(255, 255, 255, 0.05);
  background-size: 44px 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}

.flow-node {
  position: relative;
  min-height: 160px;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.flow-node::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--heading);
  background: var(--butter);
  font-weight: 900;
  transform: translateY(-50%);
}

.flow-node:last-child::after {
  display: none;
}

.flow-number {
  display: block;
  margin-bottom: 18px;
  color: var(--butter);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.flow-node h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.08rem;
}

.flow-node p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.91rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.plan {
  padding: 30px;
  border: 1px solid rgba(201, 196, 210, 0.7);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.plan-premium {
  color: #ffffff;
  background: linear-gradient(135deg, var(--indigo-deep), var(--indigo));
  border-color: transparent;
  box-shadow: 0 26px 60px rgba(32, 10, 94, 0.18);
}

.plan h3 {
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 1.55rem;
}

.plan-premium h3 {
  color: #ffffff;
}

.plan p {
  color: var(--text-soft);
}

.plan-premium p {
  color: rgba(255, 255, 255, 0.74);
}

.plan ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 24px;
  color: var(--text-soft);
}

.plan li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--butter);
}

.plan-premium li {
  color: rgba(255, 255, 255, 0.82);
}

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

.trust-item {
  padding: 22px;
  border-top: 3px solid var(--butter);
  background: rgba(255, 255, 255, 0.68);
}

.trust-item h3 {
  margin-bottom: 7px;
  color: var(--heading);
  font-size: 1rem;
}

.trust-item p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.final-cta {
  padding: 58px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 229, 102, 0.18), transparent 42%),
    var(--indigo-deep);
}

.final-cta h2 {
  max-width: 680px;
  color: #ffffff;
}

.final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta .button-row {
  margin-top: 26px;
}

.site-footer {
  padding: 46px 0;
  color: var(--text-soft);
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.footer-logo {
  width: 132px;
  margin-bottom: 12px;
}

.footer-copy {
  margin: 0;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-links a {
  border-radius: 999px;
  padding: 8px 11px;
}

.footer-links a:hover {
  color: var(--indigo);
  background: var(--surface-muted);
}

.legal-hero {
  padding: 76px 0 44px;
  background:
    linear-gradient(90deg, rgba(32, 10, 94, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(32, 10, 94, 0.05) 1px, transparent 1px),
    #f9f9fb;
  background-size: 58px 58px;
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.legal-hero p {
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.meta-line span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.65);
}

.legal-content {
  padding: 54px 0 84px;
  background: #ffffff;
}

.legal-shell {
  max-width: 880px;
  margin: 0 auto;
}

.legal-section {
  padding: 32px 0;
  border-top: 1px solid var(--surface-subtle);
}

.legal-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-section h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.12;
}

.legal-section h3 {
  margin: 24px 0 8px;
  color: var(--heading);
  font-size: 1.1rem;
}

.legal-section p,
.legal-section li {
  color: var(--text-soft);
}

.legal-section ul,
.legal-section ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 21px;
}

.notice-box {
  margin: 26px 0;
  padding: 24px;
  border: 1px solid rgba(97, 82, 162, 0.22);
  border-radius: var(--radius-md);
  background: #fbfaff;
}

.notice-box strong {
  color: var(--heading);
}

.contact-panel {
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background: var(--indigo-deep);
}

.contact-panel h2,
.contact-panel h3 {
  color: #ffffff;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel .button-row {
  margin-top: 18px;
}

.email-fallback {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.copy-status {
  color: var(--indigo);
  font-weight: 800;
}

.email-fallback a,
.contact-panel .copy-status {
  color: #ffffff;
}

.copy-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.copy-button {
  min-height: 44px;
  padding: 11px 16px;
}

.copy-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.92rem;
}

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

.support-topic {
  padding: 22px;
  border: 1px solid rgba(201, 196, 210, 0.72);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.support-topic h3 {
  margin-top: 0;
}

.support-topic p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.deletion-steps {
  counter-reset: deletion-step;
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.deletion-step {
  counter-increment: deletion-step;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(201, 196, 210, 0.72);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.deletion-step::before {
  content: counter(deletion-step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--heading);
  background: var(--butter);
  font-weight: 900;
}

.deletion-step h3 {
  margin: 0 0 6px;
}

.deletion-step p {
  margin-bottom: 0;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }

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

@keyframes progress-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 229, 102, 0);
  }

  50% {
    box-shadow: 0 0 18px rgba(255, 229, 102, 0.55);
  }
}

@media (max-width: 980px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .site-header--hero {
    position: relative;
    background: #f9f9fb;
    border-bottom-color: rgba(201, 196, 210, 0.55);
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .hero-grid,
  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 600px;
  }

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

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

  .flow-node::after {
    top: auto;
    right: auto;
    bottom: -18px;
    left: 24px;
    transform: rotate(90deg);
  }

  .plans-grid,
  .support-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .brand-mark img {
    width: 134px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 8px 10px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .button {
    width: 100%;
  }

  .hero {
    padding-bottom: 52px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .phone-shell {
    width: min(100%, 330px);
    min-height: 560px;
    border-radius: 32px;
  }

  .phone-screen {
    min-height: 532px;
    padding: 30px 16px 18px;
  }

  .focus-panel h3 {
    max-width: 170px;
    font-size: 1.25rem;
  }

  .measure-sheet {
    right: -8px;
    bottom: -18px;
    width: 185px;
    transform: rotate(0deg);
  }

  .record-line {
    grid-template-columns: 38px 1fr;
  }

  .record-status {
    grid-column: 2;
    justify-self: start;
  }

  .benefit-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .flow-wrap,
  .final-cta,
  .plan,
  .atelier-board,
  .contact-panel {
    padding: 24px;
  }

  .legal-hero {
    padding-top: 48px;
  }

  .legal-content {
    padding-bottom: 62px;
  }
}

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