/* topograpp — landing page. Direction 1a "Teren". */

:root {
  --paper: #f6f5f1;
  --ink: #1d2729;
  --ink-2: #4d5a5c;
  --ink-3: #3f4b4d;
  --ink-4: #2f3b3d;
  --muted: #7b8687;
  --line: #e1ddd2;
  --line-2: #d3cec0;
  --line-3: #c9c3b3;
  --sand: #e9e6dc;
  --sand-app: #efede6;
  --green: #1f6b58;
  --green-deep: #173f35;
  --green-soft: #dcebe4;
  --green-pale: #e2efe9;
  --green-light: #8fd1b6;
  --green-mint: #4fb495;
  --on-green: #d6ece3;
  --on-green-2: #a9cfc0;
  --on-green-3: #bfe3d4;
  --orange: #e0692f;
  --orange-light: #f2a36f;
  --on-ink: #b5bfbe;
  --on-ink-2: #d0d7d6;
  --on-ink-3: #869291;

  --ok: #2f7d4f;    --ok-bg: #e4f2e8;
  --warn: #9a6a00;  --warn-bg: #fbf0d5;
  --bad: #b3392f;   --bad-bg: #fbe7e4;
  --info: #2c5d8f;  --info-bg: #e3edf7;

  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --text: "Instrument Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --app: "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;

  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(72px, 8vw, 112px);
  --split: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--green); }
::selection { background: var(--orange); color: var(--ink); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

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

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }

.contours {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.has-contours { position: relative; overflow: hidden; }
.has-contours > :not(.contours) { position: relative; }

/* ---------- Type ---------- */

.label {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--green);
}
.h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: 18ch;
  text-wrap: balance;
}
.label + .h2 { margin-top: 16px; }
.w14 { max-width: 14ch; }
.w15 { max-width: 15ch; }
.w16 { max-width: 16ch; }
.body { font-size: 17px; line-height: 1.6; max-width: 46ch; text-wrap: pretty; }
.content { margin-top: clamp(40px, 4.5vw, 64px); }

.stack { display: flex; flex-direction: column; gap: 24px; }
.stack > .label { margin-bottom: -8px; }
.split { display: grid; grid-template-columns: var(--split); gap: 56px 72px; align-items: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color .15s, color .15s;
}
.btn .arrow { font-family: var(--mono); }
.btn-orange { background: var(--orange); color: var(--ink); }
.btn-orange:hover { background: var(--orange-light); color: var(--ink); }
.btn-paper { background: var(--paper); color: var(--green-deep); }
.btn-paper:hover { background: #fff; color: var(--green-deep); }
.btn-outline { border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* ---------- Wordmark ---------- */

.wordmark {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.05em;
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}
.wordmark .dot { border-radius: 50%; background: var(--orange-light); }

/* ---------- Hero ---------- */

.hero { background: var(--green-deep); color: var(--paper); }

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(246 245 241 / 16%);
}
.site-header .wordmark { font-size: 25px; color: var(--paper); padding: 8px 0; }
.site-header .wordmark:hover { color: var(--paper); }
.site-header .wordmark .wm-app { color: var(--green-light); }
.site-header .wordmark .dot { width: 5px; height: 5px; margin-left: 2px; }

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px clamp(14px, 2.2vw, 32px);
  font-size: 14.5px;
  white-space: nowrap;
}
.site-nav a { color: var(--on-green); }
.site-nav a:hover { color: #fff; }
.header-cta { font-size: 14.5px; padding: 10px 16px; }
.menu-btn { display: none; }

@media (max-width: 760px) {
  .site-header { flex-wrap: nowrap; justify-content: space-between; }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    background: none;
    border: 1px solid rgb(246 245 241 / 30%);
    color: var(--paper);
    font: 600 14px var(--text);
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    cursor: pointer;
  }
  .menu-btn .bars { width: 14px; height: 10px; position: relative; }
  .menu-btn .bars::before, .menu-btn .bars::after, .menu-btn .bars span {
    content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor;
  }
  .menu-btn .bars::before { top: 0; }
  .menu-btn .bars span { top: 4.25px; }
  .menu-btn .bars::after { bottom: 0; }
  .header-cta { display: none; }
  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 10;
    flex-direction: column;
    gap: 0;
    padding: 8px var(--gutter) 20px;
    background: var(--green-deep);
    border-bottom: 1px solid rgb(246 245 241 / 16%);
    font-size: 17px;
  }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid rgb(246 245 241 / 10%); }
  .site-nav.open { display: flex; }
}

.hero-copy {
  padding-top: clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero .label { color: var(--green-light); }
.h1 {
  font-family: var(--display);
  font-weight: 500;
  /* Also capped by height, so the lead and the button stay above the fold on short laptop screens. */
  font-size: clamp(46px, min(7.4vw, 13vh), 118px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 13ch;
  text-wrap: balance;
}
.hero-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 32px 64px;
  align-items: end;
}
.lead {
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.55;
  color: var(--on-green);
  max-width: 46ch;
  text-wrap: pretty;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; }
.cta-row .btn { font-size: 16.5px; padding: 16px 24px; }
.cta-note { font-size: 14px; color: var(--on-green-2); }

/* ---------- App window mock ---------- */
/* Stand-in until a real 2x screenshot of the dossier view exists. */

.app-frame { margin-top: clamp(48px, 5.5vw, 80px); }
.app {
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -10px 60px rgb(0 0 0 / 25%);
  overflow: hidden;
  font-family: var(--app);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.app-title {
  height: 32px;
  background: var(--sand-app);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 12px;
  font-size: 12px;
  color: var(--ink-2);
}
.app-title .name { display: flex; align-items: center; gap: 8px; }
.app-title .mini-icon {
  width: 14px; height: 14px; border-radius: 4px;
  background: var(--green); color: #fff;
  font: 700 11px var(--display);
  display: grid; place-items: center;
}
.app-title .controls { display: flex; height: 100%; }
.app-title .controls span { width: 44px; display: grid; place-items: center; }

.app-body {
  display: grid;
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
  height: 540px;
  background: var(--paper);
}
.app-side {
  background: var(--sand-app);
  border-right: 1px solid var(--line);
  padding: 18px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.app-brand { display: flex; align-items: center; gap: 10px; padding: 0 4px 4px; }
.app-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--green); color: #fff;
  display: grid; place-items: center;
  font: 700 26px/1 var(--display);
  position: relative;
}
.app-icon .t { margin-top: -3px; }
.app-icon .dot {
  position: absolute; right: 8px; bottom: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange-light);
}
.app-brand strong { display: block; font-size: 16px; }
.app-brand small { display: block; color: var(--muted); font-size: 12px; }
.app-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.app-actions span {
  border-radius: 8px; padding: 8px; font-weight: 600; font-size: 13px; text-align: center;
  background: #fff; border: 1px solid var(--line-2);
}
.app-actions .primary { background: var(--green); color: #fff; border-color: var(--green); }
.app-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.app-card .cap {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--muted); margin-bottom: 6px;
}
.app-card .deadline { font-size: 13px; color: var(--ink-2); padding: 3px 0; }
.app-card .deadline b { color: var(--bad); font-weight: 600; }
.app-dossier { border-radius: 10px; padding: 10px 12px; display: flex; flex-direction: column; gap: 3px; }
.app-dossier.selected { background: #fff; border: 1px solid var(--green); }
.app-dossier .top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.app-dossier .who { color: var(--ink-2); }
.app-dossier .meta { display: flex; gap: 10px; font-size: 12px; color: var(--muted); }

.pill {
  font-size: 11.5px; font-weight: 600;
  padding: 2px 8px; border-radius: 99px;
  white-space: nowrap;
}
.pill.warn { background: var(--warn-bg); color: var(--warn); }
.pill.info { background: var(--info-bg); color: var(--info); }

.app-main { padding: 26px 30px; display: flex; flex-direction: column; gap: 16px; overflow: hidden; }
.app-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.app-head .kicker { font-size: 12px; text-transform: uppercase; letter-spacing: 0.7px; color: var(--muted); }
.app-head .title { font-size: 24px; font-weight: 600; white-space: nowrap; }
.app-head .title span { font-weight: 400; color: var(--ink-2); }
.app-head > div { min-width: 0; }
.app-head .sub { color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-head .pill { font-size: 13px; padding: 5px 12px; }
.app-panel { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; }
.app-panel.alert { border-left: 4px solid var(--warn); }
.app-panel .alert-title { font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.app-panel blockquote {
  margin: 4px 0 10px; padding: 8px 12px;
  border-left: 3px solid var(--line-2); background: var(--paper);
  font-size: 13px; color: var(--ink-2);
}
.app-panel .action {
  display: inline-flex; white-space: nowrap;
  background: var(--green); color: #fff;
  border-radius: 7px; padding: 5px 12px;
  font-size: 12.5px; font-weight: 600;
}
.app-panel .cap {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--ink-2); font-weight: 600; margin-bottom: 10px;
}
.app-steps { display: flex; flex-wrap: wrap; gap: 6px; }
.app-steps li {
  list-style: none;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 10px 5px 5px; border-radius: 99px;
  border: 1px solid var(--line); color: var(--ink-2);
  font-size: 13px; white-space: nowrap;
}
.app-steps li span {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  background: var(--ok-bg); color: var(--ok);
}
.app-steps li.current span { background: var(--green); color: #fff; }
.app-steps li.todo span { background: var(--line); color: var(--ink-2); }
.app-steps { margin: 0; padding: 0; }

@media (max-width: 640px) {
  .app-body { grid-template-columns: minmax(0, 1fr); height: auto; }
  .app-side { display: none; }
  .app-main { padding: 20px 18px; }
  .app-head .title { font-size: 20px; }
  .app-head > .pill { display: none; }
}

/* ---------- Document strip ---------- */

.strip { background: var(--orange); color: var(--ink); }
.strip .wrap {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: baseline;
  font-size: 15px;
}
.strip .label { color: var(--ink); font-size: 12px; }
.strip b { font-weight: 600; }
@media (max-width: 640px) {
  .strip .wrap { flex-direction: column; gap: 6px; padding-top: 20px; padding-bottom: 22px; }
  .strip .label { margin-bottom: 4px; }
}

/* ---------- Cum merge ---------- */

.steps {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 960px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--sand-app);
  border-radius: 16px;
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step .num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: grid; place-items: center;
  font: 500 20px var(--display);
}
.step .num.orange { background: var(--orange); color: var(--ink); }
.step p { font-size: 17px; line-height: 1.55; text-wrap: pretty; }
.step .num { flex: none; }
@media (min-width: 600px) and (max-width: 959px) {
  .step { flex-direction: row; align-items: center; gap: 28px; padding: 28px 32px; }
  .step p { max-width: 52ch; }
}

/* ---------- Ce face ---------- */

.bg-sand { background: var(--sand); }
.features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 0 56px;
  margin-bottom: -44px;
}
.feature {
  border-top: 2px solid var(--ink);
  padding: 20px 0 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature h3 { font: 500 23px var(--display); letter-spacing: -0.025em; }
.feature h3 { text-wrap: balance; }
.feature p { font-size: 16px; line-height: 1.55; color: var(--ink-3); text-wrap: pretty; max-width: 52ch; }

/* ---------- Etape ---------- */

.stages-section { background: var(--ink); color: var(--paper); }
.stages-section .label { color: var(--green-mint); }
.stages-intro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 24px 64px;
  align-items: end;
  margin-top: 16px;
}
.stages-intro p { font-size: 17px; line-height: 1.55; color: var(--on-ink); max-width: 44ch; text-wrap: pretty; }
.stations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 48px;
  margin: clamp(48px, 5.5vw, 80px) 0 0;
  padding: 0;
  list-style: none;
}
.station { display: flex; flex-direction: column; gap: 14px; padding-right: 20px; }
.station .n { font-family: var(--mono); font-size: 11.5px; color: var(--on-ink-3); }
.station .track { position: relative; height: 13px; margin-right: -20px; }
.station .track::before {
  content: ""; position: absolute; left: 0; right: 0; top: 5px;
  height: 1px; background: var(--ink-2);
}
.station .track::after {
  content: ""; position: absolute; left: 0; top: 0;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--ink); border: 2px solid var(--on-ink-3);
}
.station.done .track::before { height: 3px; background: var(--green-mint); }
.station.done .track::after { background: var(--green-mint); border-color: var(--green-mint); }
.station.current .track::after { border-color: var(--green-mint); }
.station .name { font: 500 22px/1.1 var(--display); letter-spacing: -0.02em; margin-top: 8px; }
.station .docs { font-size: 14px; line-height: 1.55; color: var(--on-ink); text-wrap: pretty; }
.station:last-child .track::before { display: none; }
@media (min-width: 1240px) { .stations { grid-template-columns: repeat(7, minmax(0, 1fr)); } }
@media (max-width: 719px) {
  .stations { grid-template-columns: 1fr; row-gap: 0; }
  .station { position: relative; padding: 0 0 36px 34px; gap: 6px; }
  .station:last-child { padding-bottom: 0; }
  .station .track { position: absolute; left: 0; top: 2px; bottom: 0; width: 13px; height: auto; margin: 0; }
  .station .track::before { left: 6px; right: auto; top: 15px; bottom: -2px; width: 1px; height: auto; }
  .station.done .track::before { left: 5px; width: 3px; height: auto; }
  .station .name { margin-top: 2px; }
}

/* ---------- Șabloane ---------- */

.bg-green-soft { background: var(--green-soft); }
.bg-green-soft .body { color: var(--ink-4); }
.bg-green-soft .small { font-size: 15px; line-height: 1.6; color: var(--ink-4); max-width: 46ch; }
.sheet {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 0 #b9d6c8, 0 30px 60px rgb(23 63 53 / 18%);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.95;
  transform: rotate(-1.2deg);
  width: 100%;
  max-width: 560px;
}
.sheet .doc-title { font-weight: 700; font-size: 14px; text-align: center; letter-spacing: 0.06em; }
.sheet .doc-nr { text-align: center; font-size: 13px; color: var(--muted); }
.field {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green);
  background: var(--green-pale);
  padding: 1px 5px;
  border-radius: 3px;
}
.sheet .missing {
  margin-top: 4px;
  padding: 10px 12px;
  border-radius: 6px;
  background: var(--warn-bg);
  font-family: var(--text);
  font-size: 13.5px;
  line-height: 1.5;
}
.sheet .missing strong { color: var(--warn); }

/* ---------- ANAF ---------- */

.anaf-section .body { color: var(--ink-2); }
.anaf {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgb(30 35 30 / 8%);
  font-family: var(--app);
  font-size: 14px;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
}
.anaf .search { padding: 18px 20px; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.anaf .cap { font-size: 12px; color: var(--muted); }
.anaf .search > .cap { font-weight: 600; }
.anaf .row { display: flex; gap: 8px; }
.anaf .input {
  flex: 1; min-width: 0;
  padding: 8px 10px; border-radius: 7px;
  border: 1px solid var(--green);
  outline: 2px solid var(--green); outline-offset: -1px;
  font-family: var(--mono); font-size: 14px;
}
.anaf .lookup {
  padding: 7px 12px; border-radius: 7px;
  border: 1px solid var(--green); background: var(--green-pale);
  font-size: 13px; font-weight: 600; white-space: nowrap;
  display: flex; align-items: center;
}
.anaf .check { font-size: 12px; color: var(--ok); }
.anaf .result { padding: 18px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.anaf .result .wide { grid-column: 1 / -1; }
.anaf .result .active { color: var(--ok); font-weight: 600; }
.anaf .conflict {
  margin: 0 20px 20px;
  display: grid; grid-template-columns: 70px minmax(0, 1fr) auto; gap: 10px; align-items: center;
  background: var(--warn-bg); border-radius: 7px; padding: 8px 10px; font-size: 13px;
}
.anaf .conflict .k { color: var(--muted); }
.anaf .conflict strong { white-space: nowrap; }
.anaf .conflict .apply { color: var(--green); font-weight: 600; }

/* ---------- Datele tale ---------- */

.data-section { background: var(--green-deep); color: var(--paper); }
.data-section .split { align-items: start; }
.data-section .label { color: var(--green-light); }
.data-section .body { color: var(--on-green); }
.specs { border-top: 1px solid rgb(246 245 241 / 25%); margin: 8px 0 0; }
.specs div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgb(246 245 241 / 25%);
}
.specs dt { font-family: var(--mono); font-size: 12px; color: var(--green-light); padding-top: 2px; }
.specs dd { margin: 0; font-size: 15.5px; line-height: 1.5; text-wrap: pretty; }
@media (max-width: 480px) { .specs div { grid-template-columns: 88px minmax(0, 1fr); gap: 12px; } }
.photo { display: flex; flex-direction: column; gap: 12px; margin: 0; }
.photo .frame {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--green);
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo figcaption { font-family: var(--mono); font-size: 12px; color: var(--green-light); }
@media (max-width: 939px) { .photo { max-width: 560px; } .photo .frame { aspect-ratio: 3 / 2; } }

/* ---------- Preț ---------- */

.price-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-top: 16px;
}
.billing {
  display: flex;
  background: var(--sand);
  border-radius: 999px;
  padding: 4px;
  font-size: 14.5px;
  font-weight: 600;
}
.billing button {
  border: 0;
  font: inherit;
  cursor: pointer;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
}
.billing button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
}
.plan {
  background: var(--sand);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.plan .top { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 4px 12px; }
.plan .name { font: 500 30px var(--display); letter-spacing: -0.03em; }
.plan .seats { font-size: 14px; color: var(--ink-2); }
.plan .price { display: flex; align-items: baseline; gap: 8px; }
.plan .amount {
  font: 400 clamp(60px, 6vw, 88px)/0.9 var(--display);
  letter-spacing: -0.05em;
}
.plan .unit { color: var(--ink-2); font-size: 15px; }
.plan p { font-size: 16px; line-height: 1.55; color: var(--ink-3); }
.plan .btn { margin-top: auto; padding: 15px; font-size: 15.5px; }
.plan.dark { background: var(--ink); color: var(--paper); }
.plan.dark .seats, .plan.dark .unit { color: var(--on-ink); }
.plan.dark .amount { color: var(--orange-light); }
.plan.dark p { color: var(--on-ink-2); }
.fine { margin-top: 20px; font-size: 14px; color: var(--muted); text-wrap: pretty; }

/* ---------- Plan + întrebări ---------- */

.qa-wrap { display: flex; flex-direction: column; gap: var(--section-y); }
.roadmap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
}
.phase {
  background: var(--paper);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  padding-top: 34px;
}
@media (min-width: 960px) { .roadmap { grid-template-columns: repeat(3, 1fr); } }
.phase::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: var(--muted); }
.phase.now::before { background: var(--green); }
.phase.wip::before { background: var(--orange); }
.phase .status { font-family: var(--mono); font-size: 12px; color: var(--ink-2); }
.phase h3 { font: 500 24px var(--display); letter-spacing: -0.02em; }
.phase p { font-size: 15.5px; line-height: 1.6; color: var(--ink-3); text-wrap: pretty; }

.faq { margin-top: clamp(40px, 5vw, 64px); border-top: 2px solid var(--ink); max-width: 920px; }
.faq-item { border-bottom: 1px solid var(--line-3); }
.faq-item h3 { font: inherit; }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 20px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: pretty;
}
.faq-q:hover { color: var(--green); }
.faq-q .sign {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 16px;
  color: var(--ink);
}
.faq-q[aria-expanded="true"] .sign { background: var(--green); color: #fff; }
.faq-a { margin: 0 0 28px; font-size: 16.5px; line-height: 1.6; color: var(--ink-3); max-width: 62ch; text-wrap: pretty; }

/* ---------- Footer ---------- */

.site-footer { background: var(--green); color: #fff; }
.site-footer .wrap { padding-top: clamp(72px, 8vw, 112px); container-type: inline-size; }
.footer-cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 32px 64px;
  align-items: end;
}
.footer-cta h2 {
  font: 500 clamp(40px, 5.6vw, 84px)/0.96 var(--display);
  letter-spacing: -0.05em;
  max-width: 13ch;
  text-wrap: balance;
}
.footer-cta .actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-cta .btn { font-size: 17px; padding: 18px 26px; }
.footer-cta .version { font-family: var(--mono); font-size: 12px; color: var(--on-green-3); }
.giant {
  margin-top: clamp(56px, 6.5vw, 96px);
  margin-left: -0.04em;
  font-size: min(262px, 100cqw / 4.3);
  line-height: 0.76;
  letter-spacing: -0.065em;
}
.giant .wm-app { color: var(--green-light); }
.giant .dot { width: 0.07em; height: 0.07em; margin-left: 0.02em; }
.footer-bar {
  border-top: 1px solid rgb(255 255 255 / 25%);
  margin-top: clamp(24px, 3vw, 40px);
  padding: 6px 0 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 16px;
  font-size: 13.5px;
  color: var(--on-green);
}
.footer-bar nav { display: flex; gap: 0 24px; flex-wrap: wrap; }
.footer-bar a { color: var(--on-green); display: inline-block; padding: 14px 0; }
.footer-bar > span { padding: 12px 0; }
.footer-bar a:hover { color: #fff; }
@media (pointer: coarse) { .billing button { min-height: 44px; } }
@media (max-width: 480px) {
  .sheet { padding: 26px 22px; font-size: 14px; line-height: 1.85; gap: 10px; }
  .sheet .doc-title { font-size: 12.5px; line-height: 1.4; letter-spacing: 0.04em; }
  .field { font-size: 11px; padding: 1px 4px; }
}
