:root {
  color-scheme: dark;
  --bg: #08010f;
  --surface: #10051b;
  --surface-2: #160824;
  --text: #fbf8ff;
  --soft: #d6cede;
  --muted: #8f849c;
  --line: rgba(251, 248, 255, 0.12);
  --line-strong: rgba(180, 124, 253, 0.34);
  --accent: #b47cfd;
  --accent-strong: #8e42ee;
  --accent-deep: #5d0077;
  --display: "Outfit", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 4%, rgba(111, 29, 195, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 80px 80px, auto;
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
label {
  -webkit-tap-highlight-color: transparent;
}

.closer-topbar {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 72px;
  padding: 0 3vw;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 1, 15, 0.9);
  backdrop-filter: blur(18px);
}

.closer-brand {
  display: inline-flex;
  width: 118px;
}

.closer-brand img {
  display: block;
  width: 100%;
}

.privacy-status {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.privacy-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(180, 124, 253, 0.78);
  animation: privacy-pulse 2.4s ease-in-out infinite;
}

.topbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.topbar-actions a,
.topbar-actions button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: transparent;
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.topbar-actions .offer-jump {
  border-color: var(--line-strong);
  color: var(--text);
}

.topbar-actions button {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent-strong));
}

.closer-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  width: min(1600px, 94vw);
  margin: 0 auto;
}

.meeting-rail {
  position: sticky;
  top: 72px;
  display: flex;
  height: calc(100vh - 72px);
  padding: 42px 30px 30px 0;
  border-right: 1px solid var(--line);
  flex-direction: column;
}

.section-code {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.meeting-rail > div:first-child strong {
  display: block;
  max-width: 210px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.15;
}

.meeting-rail nav {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.meeting-rail nav a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.meeting-rail nav a span {
  color: var(--accent);
  font-size: 9px;
}

.meeting-rail nav a:hover,
.meeting-rail nav a.is-active {
  padding-left: 8px;
  color: var(--text);
  background: linear-gradient(90deg, rgba(180, 124, 253, 0.09), transparent);
}

.rail-status {
  margin-top: auto;
}

.rail-status > span,
.rail-status small {
  color: var(--muted);
  font-size: 9px;
}

.rail-status strong {
  display: block;
  margin: 7px 0 13px;
  font-family: var(--display);
  font-size: 22px;
}

.rail-status > div {
  height: 2px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--line);
}

.rail-status i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  transition: width 360ms ease;
}

.rail-status small {
  display: block;
  line-height: 1.5;
}

.meeting-canvas {
  min-width: 0;
  padding: 0 0 120px 5vw;
}

.meeting-intro,
.workspace-section {
  scroll-margin-top: 95px;
  border-bottom: 1px solid var(--line);
}

.meeting-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 7vw;
  align-items: center;
  min-height: 470px;
  padding: 42px 0;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -0.05em;
}

h1 {
  max-width: 820px;
  font-size: clamp(58px, 6.4vw, 102px);
  line-height: 0.9;
}

h1 em,
h2 em {
  color: var(--accent);
  font-style: normal;
}

.intro-instruction {
  border-top: 1px solid var(--line-strong);
}

.intro-instruction > strong {
  display: block;
  padding: 24px 0 18px;
  font-family: var(--display);
  font-size: 18px;
}

.intro-instruction ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: intro;
}

.intro-instruction li {
  display: grid;
  grid-template-columns: 30px 1fr;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
  line-height: 1.45;
  counter-increment: intro;
}

.intro-instruction li::before {
  content: "0" counter(intro);
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
}

.intro-instruction button {
  width: 100%;
  min-height: 52px;
  margin-top: 20px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent-strong));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.intro-instruction button:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.intro-instruction > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.workspace-section {
  padding: 100px 0;
}

#proposta {
  padding-top: 64px;
}

#proposta .section-heading {
  margin-bottom: 34px;
}

#condicoes {
  min-height: calc(100vh - 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: 7vw;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 790px;
  font-size: clamp(40px, 4.1vw, 66px);
  line-height: 0.96;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.question-sequence {
  border-top: 1px solid var(--line);
}

.question-sequence article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 170px;
  gap: 24px;
  align-items: center;
  min-height: 98px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.question-sequence article:hover {
  padding-inline: 14px;
  background: linear-gradient(90deg, rgba(180, 124, 253, 0.07), transparent);
}

.question-sequence article > span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 18px;
}

.question-sequence strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
}

.question-sequence p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.question-sequence small {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

blockquote {
  margin: 54px 0 0;
  padding: 26px 0 0 42px;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  color: var(--soft);
  font-family: var(--display);
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.24;
}

blockquote b {
  color: var(--accent);
}

.synthesis-fields,
.commercial-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.synthesis-fields label,
.commercial-fields label,
.recommendation-field,
.condition-layout > label {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.field-wide {
  grid-column: 1 / -1;
}

label > span,
.condition-layout legend {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 14px;
  transition: border-color 180ms ease, background 180ms ease;
}

input,
select {
  min-height: 46px;
}

textarea {
  min-height: 88px;
  padding: 13px 0;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  background: rgba(180, 124, 253, 0.035);
}

input::placeholder,
textarea::placeholder {
  color: #72677f;
}

select option {
  color: var(--text);
  background: var(--surface);
}

.offer-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.offer-choice {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px 18px;
  align-content: start;
  min-height: 190px;
  padding: 28px 68px 26px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.offer-choice:hover,
.offer-choice:has(input:checked) {
  background: linear-gradient(135deg, rgba(180, 124, 253, 0.13), rgba(180, 124, 253, 0.025));
}

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

.offer-choice:has(input:checked) {
  box-shadow: inset 0 0 0 2px var(--accent);
}

.offer-choice::after {
  content: "Selecionar";
  position: absolute;
  top: 26px;
  right: 22px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-choice:has(input:checked)::after {
  content: "Selecionada ✓";
  color: var(--accent);
}

.offer-choice input {
  position: absolute;
  opacity: 0;
}

.offer-index {
  color: var(--accent);
  font-family: var(--display);
  font-size: 18px;
}

.offer-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
}

.offer-copy strong {
  font-family: var(--display);
  font-size: 21px;
}

.offer-copy small,
.offer-when {
  grid-column: 2;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.offer-choice:has(input:focus-visible) {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.offer-choice:has(input:checked) .offer-index,
.offer-choice:has(input:checked) .offer-copy strong {
  color: var(--accent);
}

.offer-copy small,
.offer-when {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.execution-question-card {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 24px;
  border: 1px solid rgba(180, 124, 253, 0.28);
  border-radius: 6px;
  background: linear-gradient(120deg, rgba(129, 48, 214, 0.14), rgba(129, 48, 214, 0.02));
}

.execution-question-card span,
.execution-question-card small {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.execution-question-card strong {
  max-width: 960px;
  font-family: var(--display);
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 600;
  line-height: 1.15;
}

.execution-question-card small {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.45;
  text-transform: none;
}

.recommendation-field {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.condition-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.condition-layout > label small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.price-included-note {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(180, 124, 253, 0.12), rgba(180, 124, 253, 0.02));
}

.price-included-note span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-included-note strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 24px;
}

.price-included-note small {
  max-width: 430px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.condition-layout fieldset {
  margin: 0;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.condition-layout legend {
  padding: 0;
}

.condition-layout fieldset label {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.condition-layout fieldset label:last-child {
  border-bottom: 0;
}

.condition-layout fieldset input {
  width: 14px;
  min-height: 14px;
  margin: 3px 0 0;
  accent-color: var(--accent);
}

.condition-layout fieldset span {
  display: grid;
  gap: 5px;
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
}

.condition-layout fieldset small {
  color: var(--muted);
  font-weight: 400;
}

.commercial-fields {
  margin-top: 24px;
}

.commercial-fields[hidden] {
  display: none;
}

.launch-bar {
  position: sticky;
  z-index: 80;
  bottom: 0;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto auto;
  gap: 10px;
  align-items: center;
  min-height: 84px;
  padding: 14px 0 14px 24px;
  border-top: 1px solid var(--line-strong);
  background: rgba(8, 1, 15, 0.93);
  backdrop-filter: blur(18px);
}

.launch-bar > div {
  display: grid;
  gap: 5px;
}

.launch-bar span {
  color: var(--muted);
  font-size: 9px;
}

.launch-bar strong {
  font-family: var(--display);
  font-size: 15px;
}

.quiet-button,
.launch-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--soft);
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.launch-button {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent-strong));
}

button:hover,
a:hover {
  filter: brightness(1.12);
}

@keyframes privacy-pulse {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.88);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1120px) {
  .closer-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .meeting-canvas {
    padding-left: 4vw;
  }

  .meeting-intro,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .offer-choice {
    min-height: 178px;
  }
}

@media (max-width: 820px) {
  .closer-topbar {
    grid-template-columns: 118px minmax(0, 1fr);
    padding: 0 20px;
  }

  .privacy-status {
    justify-self: end;
  }

  .topbar-actions {
    grid-column: 1 / -1;
    padding-bottom: 12px;
  }

  .closer-layout {
    display: block;
    width: calc(100vw - 36px);
    max-width: 760px;
  }

  .meeting-rail {
    position: static;
    height: auto;
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .meeting-rail nav {
    grid-template-columns: repeat(5, 1fr);
    overflow-x: auto;
  }

  .meeting-rail nav a {
    display: flex;
    min-width: 120px;
    padding: 0 12px;
  }

  .rail-status {
    margin-top: 24px;
  }

  .meeting-canvas {
    width: 100%;
    min-width: 0;
    padding-left: 0;
  }

  .meeting-intro {
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 72px 0;
  }

  .meeting-intro > *,
  .section-heading > *,
  .intro-instruction,
  .workspace-section {
    min-width: 0;
    max-width: 100%;
  }

  .intro-instruction li,
  .section-heading p,
  .offer-copy small,
  .offer-when {
    overflow-wrap: anywhere;
  }

  .synthesis-fields,
  .commercial-fields,
  .condition-layout,
  .offer-choices {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .question-sequence article {
    grid-template-columns: 34px 1fr;
  }

  .question-sequence small {
    grid-column: 2;
    text-align: left;
  }

  .launch-bar {
    grid-template-columns: 1fr 1fr;
    padding-inline: 0;
  }

  .launch-bar > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 54px;
  }

  .topbar-actions a:not(.offer-jump) {
    display: none;
  }

  .topbar-actions .offer-jump,
  .topbar-actions button {
    display: inline-flex;
    flex: 1;
    min-width: 0;
    min-height: 46px;
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .workspace-section {
    padding: 72px 0;
  }

  .offer-choice {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    min-height: 170px;
    padding-right: 26px;
  }

  .offer-when {
    grid-column: 2;
    text-align: left;
  }

  .launch-bar {
    position: static;
    grid-template-columns: 1fr;
  }

  .launch-bar > div,
  .launch-bar button {
    grid-column: auto;
  }
}

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

/* Premium UI refinement — closer workspace */
.closer-topbar {
  grid-template-columns: minmax(230px, auto) minmax(170px, 1fr) auto;
  min-height: 82px;
  padding-inline: max(3vw, 28px);
  background: rgba(8, 5, 13, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.closer-brand {
  width: auto;
  align-items: center;
  gap: 17px;
  color: var(--text);
  text-decoration: none;
}

.closer-brand img {
  width: 106px;
}

.closer-brand > span {
  display: grid;
  gap: 3px;
  padding-left: 17px;
  border-left: 1px solid var(--line);
}

.closer-brand strong {
  font: 600 12px/1 var(--display);
  letter-spacing: 0.03em;
}

.closer-brand small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.privacy-status {
  justify-self: start;
}

.privacy-status > div {
  display: grid;
  gap: 3px;
}

.privacy-status strong {
  color: #d8d0e2;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.privacy-status small {
  color: #73687f;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.topbar-actions a,
.topbar-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0;
  padding-inline: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 8px;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease, background 180ms ease;
}

.topbar-actions a:hover,
.topbar-actions button:hover {
  transform: translateY(-1px);
}

.topbar-actions .back-link {
  color: #d8c9eb;
  border-color: rgba(255, 255, 255, 0.14);
}

.topbar-actions .offer-jump {
  color: #e7daf8;
  background: rgba(180, 124, 253, 0.07);
}

.topbar-actions button {
  min-width: 202px;
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent-strong));
  box-shadow: 0 12px 32px rgba(93, 0, 119, 0.24);
}

.closer-layout {
  grid-template-columns: 282px minmax(0, 1fr);
  width: min(1640px, 94vw);
}

.meeting-rail {
  top: 82px;
  height: calc(100vh - 82px);
  padding: 46px 28px 30px 0;
}

.meeting-rail nav {
  gap: 5px;
  margin-top: 38px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.meeting-rail nav a {
  min-height: 46px;
  padding-inline: 11px;
  border: 0;
  border-radius: 6px;
}

.meeting-rail nav a:hover,
.meeting-rail nav a.is-active {
  padding-left: 14px;
  background: rgba(180, 124, 253, 0.1);
}

.rail-status {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.rail-status > div {
  height: 3px;
  border-radius: 2px;
}

.meeting-intro {
  min-height: 520px;
}

.intro-instruction {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(142, 66, 238, 0.18), transparent 44%),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.intro-instruction > strong {
  padding-top: 0;
}

.intro-instruction button,
.quiet-button,
.launch-button {
  border-radius: 8px;
}

.workspace-section {
  padding-block: 92px;
}

.offer-choices {
  gap: 12px;
  border: 0;
}

.offer-choice {
  min-height: 210px;
  padding: 28px 78px 26px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.022);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
}

.offer-copy small {
  grid-column: auto;
  padding-top: 0;
  border-top: 0;
}

.offer-when {
  grid-column: 2;
}

.offer-choice:hover {
  border-color: var(--line-strong);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
}

.offer-choice:has(input:checked) {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent), 0 22px 60px rgba(93, 0, 119, 0.2);
}

.execution-question-card,
.recommendation-field {
  border-radius: 8px;
}

.recommendation-field {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.question-sequence {
  display: grid;
  gap: 8px;
  border: 0;
}

.question-sequence article {
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.question-sequence article:hover {
  padding-inline: 24px;
  border-color: var(--line-strong);
}

.synthesis-fields,
.commercial-fields,
.condition-layout {
  gap: 10px;
  border: 0;
}

.synthesis-fields label,
.commercial-fields label,
.condition-layout > label,
.price-included-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
}

.price-included-note {
  background:
    radial-gradient(circle at 100% 0%, rgba(142, 66, 238, 0.18), transparent 48%),
    rgba(180, 124, 253, 0.06);
}

.launch-bar {
  min-height: 88px;
  padding: 14px 14px 14px 22px;
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: rgba(8, 3, 14, 0.94);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1280px) {
  .closer-topbar {
    grid-template-columns: minmax(190px, auto) 1fr;
  }

  .privacy-status {
    justify-self: end;
  }

  .topbar-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
    padding-bottom: 12px;
  }
}

@media (max-width: 820px) {
  .closer-topbar {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 18px 20px;
  }

  .closer-brand img {
    width: 104px;
  }

  .closer-brand > span {
    display: none;
  }

  .privacy-status small {
    display: none;
  }

  .topbar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-bottom: 0;
  }

  .topbar-actions a,
  .topbar-actions button {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .meeting-rail {
    position: static;
    top: auto;
    height: auto;
    padding-top: 36px;
  }

  .meeting-rail nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .meeting-rail nav a {
    min-width: 0;
  }

  .meeting-rail nav a:last-child {
    grid-column: 1 / -1;
  }

  .rail-status {
    margin-top: 18px;
  }

  .intro-instruction {
    padding: 24px;
  }

  .meeting-intro {
    min-height: auto;
  }

  .offer-choice {
    min-height: auto;
    padding: 26px 24px;
  }

  .offer-choice::after {
    top: 25px;
    right: 22px;
  }

  .offer-copy strong {
    padding-right: 86px;
  }

  .offer-copy small {
    padding-top: 7px;
    border: 0;
  }

  .offer-when {
    grid-column: 1 / -1;
    margin-top: 6px;
    padding-top: 16px;
  }

  .question-sequence article {
    padding: 18px;
  }

  .launch-bar {
    padding: 16px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
  }
}

@media (max-width: 560px) {
  .topbar-actions a:not(.offer-jump) {
    display: inline-flex;
  }

  .topbar-actions .offer-jump,
  .topbar-actions button {
    min-height: 44px;
  }

  .offer-choice {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px 16px;
  }

  .offer-copy strong {
    padding-right: 72px;
    font-size: 22px;
  }

  .section-heading h2 {
    font-size: clamp(38px, 11vw, 52px);
  }
}
