:root {
  --ink: #21150d;
  --ink-soft: #685548;
  --brown-950: #160a03;
  --brown-900: #211006;
  --brown-800: #341a0b;
  --brown-700: #542d13;
  --gold-500: #c78a2b;
  --gold-400: #d9ad5d;
  --gold-300: #efd28f;
  --cream-50: #fffdf8;
  --cream-100: #fbf4e6;
  --cream-200: #f3e6cf;
  --line: rgba(73, 43, 21, 0.18);
  --green: #2d6a3e;
  --shadow: 0 24px 70px rgba(47, 28, 14, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 8%, rgba(199, 138, 43, 0.13), transparent 26rem),
    var(--cream-100);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.invite-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 0%, rgba(199, 138, 43, 0.11), transparent 31rem),
    linear-gradient(180deg, #fbf4e6 0%, #f7ead3 100%);
}

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: -999px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--brown-950);
}

.skip-link:focus {
  left: 16px;
}

.vs-bar {
  position: relative;
  z-index: 20;
  color: #f5e2bb;
  background: #0d2e10;
  border-bottom: 1px solid rgba(245, 226, 187, 0.18);
}

.vs-bar-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vs-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.vs-wordmark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.vs-wordmark small {
  display: block;
  margin-top: -3px;
  font: 500 8px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.68;
}

.vs-back {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.78;
  transition: opacity 160ms ease;
}

.vs-back:hover {
  opacity: 1;
}

.product-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  color: #fff7e8;
  background: #160a03;
  border-bottom: 1px solid rgba(239, 210, 143, 0.18);
}

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

.product-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #f5d68b;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.product-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.product-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 247, 232, 0.78);
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.product-back:hover {
  color: #f5d68b;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #95621c;
  font: 600 11px/1.3 var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: #fff8e9;
  background:
    radial-gradient(circle at 74% 28%, rgba(210, 154, 61, 0.18), transparent 22rem),
    radial-gradient(circle at 20% 110%, rgba(123, 62, 17, 0.64), transparent 34rem),
    var(--brown-950);
}

.hero::after {
  position: absolute;
  inset: auto -10% -45% 38%;
  width: 720px;
  height: 720px;
  content: "";
  border: 1px solid rgba(217, 173, 93, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(217, 173, 93, 0.04),
    0 0 0 150px rgba(217, 173, 93, 0.025);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
  padding-block: 88px;
}

.hero .eyebrow {
  color: var(--gold-400);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font: 600 clamp(54px, 7.5vw, 92px) / 0.9 var(--serif);
  letter-spacing: -0.035em;
}

.hero h1 em {
  display: block;
  color: var(--gold-300);
  font-weight: 500;
}

.hero-copy {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 248, 233, 0.75);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  color: var(--brown-950);
  background: var(--gold-300);
}

.button-secondary {
  color: #fff8e9;
  border-color: rgba(239, 210, 143, 0.46);
  background: rgba(255, 255, 255, 0.03);
}

.button-dark {
  color: var(--gold-300);
  background: var(--brown-950);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  width: min(100%, 410px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(217, 173, 93, 0.24);
  border-radius: 42% 58% 58% 42% / 48% 44% 56% 52%;
  background: rgba(255, 255, 255, 0.025);
  transform: rotate(7deg);
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.44));
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 16px;
  z-index: 2;
  width: min(260px, 72%);
  padding: 18px;
  border: 1px solid rgba(239, 210, 143, 0.24);
  border-radius: 16px;
  color: rgba(255, 248, 233, 0.78);
  background: rgba(29, 13, 3, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  font-size: 13px;
}

.hero-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-300);
  font-size: 14px;
}

.section {
  padding-block: clamp(84px, 10vw, 130px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 48px;
}

.section h2 {
  margin: 0;
  font: 600 clamp(42px, 5.5vw, 68px) / 0.98 var(--serif);
  letter-spacing: -0.025em;
}

.section-lede {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.experience-item {
  min-height: 260px;
  padding: 36px 30px;
  border-right: 1px solid var(--line);
}

.experience-item:last-child {
  border-right: 0;
}

.experience-number {
  display: block;
  margin-bottom: 45px;
  color: var(--gold-500);
  font: 600 12px/1 var(--mono);
  letter-spacing: 0.18em;
}

.experience-item h3 {
  margin: 0 0 13px;
  font: 600 29px/1 var(--serif);
}

.experience-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.product-band {
  color: #fff8eb;
  background: var(--brown-950);
}

.product-band .eyebrow,
.product-band h2 {
  color: var(--gold-300);
}

.product-band .section-lede {
  color: rgba(255, 248, 235, 0.65);
}

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

.flow-card {
  min-height: 210px;
  padding: 25px;
  border: 1px solid rgba(239, 210, 143, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01));
}

.flow-card span {
  color: var(--gold-400);
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.18em;
}

.flow-card h3 {
  margin: 45px 0 12px;
  font: 600 26px/1.02 var(--serif);
}

.flow-card p {
  margin: 0;
  color: rgba(255, 248, 235, 0.62);
  font-size: 13px;
}

.chef-program {
  background:
    linear-gradient(115deg, transparent 0 57%, rgba(199, 138, 43, 0.1) 57% 100%),
    var(--cream-200);
}

.program-landing {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
}

.program-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream-50);
  box-shadow: var(--shadow);
}

.program-copy {
  padding: clamp(36px, 6vw, 70px);
}

.program-copy h2 {
  max-width: 620px;
}

.program-copy h1 {
  max-width: 620px;
  margin: 0;
  font: 600 clamp(58px, 7vw, 94px) / 0.88 var(--serif);
  letter-spacing: -0.04em;
}

.program-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.program-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.program-list div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  font-weight: 650;
}

.program-list div::before {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  content: "✓";
  font-size: 12px;
}

.program-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(32px, 5vw, 58px);
  color: #fff6e4;
  background:
    radial-gradient(circle at 100% 0, rgba(217, 173, 93, 0.19), transparent 19rem),
    var(--brown-900);
}

.program-aside-label {
  color: var(--gold-400);
  font: 600 10px/1.4 var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.program-aside blockquote {
  margin: 42px 0;
  font: 500 clamp(28px, 3.5vw, 43px) / 1.02 var(--serif);
}

.program-aside p {
  margin: 0 0 22px;
  color: rgba(255, 246, 228, 0.62);
  font-size: 13px;
}

.participation {
  background: var(--cream-100);
}

.participation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.participation-grid article {
  min-height: 250px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.participation-grid article:last-child {
  border-right: 0;
}

.participation-grid span {
  color: var(--gold-500);
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.18em;
}

.participation-grid h3 {
  margin: 62px 0 12px;
  font: 600 28px/1 var(--serif);
}

.participation-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.participation-note {
  max-width: 760px;
  margin: 34px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--gold-500);
  color: var(--ink-soft);
  font-size: 13px;
}

.site-footer {
  padding-block: 42px;
  color: rgba(255, 248, 235, 0.55);
  background: #0e0703;
  font-size: 12px;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer a {
  color: var(--gold-300);
}

/* Invitation */
.invite-header {
  padding-block: 28px 18px;
}

.invite-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.invite-ventuno-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font: 700 28px/1 var(--serif);
}

.invite-ventuno-brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.secure-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.secure-label::before {
  color: var(--green);
  content: "●";
  font-size: 9px;
}

.invite-shell {
  width: min(calc(100% - 40px), 980px);
  margin: 20px auto 84px;
}

.invite-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.progress-step {
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #8b796a;
  background: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 700;
}

.progress-step span {
  display: block;
  margin-bottom: 4px;
  color: #a1783a;
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.12em;
}

.progress-step.is-active {
  color: white;
  background: var(--brown-900);
  border-color: var(--brown-900);
}

.progress-step.is-active span {
  color: var(--gold-300);
}

.invite-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream-50);
  box-shadow: var(--shadow);
}

.invite-card-head {
  padding: clamp(30px, 5vw, 52px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 10%, rgba(199, 138, 43, 0.14), transparent 16rem),
    #fffaf0;
}

.invite-card-head h1 {
  max-width: 720px;
  margin: 0;
  font: 600 clamp(41px, 6vw, 62px) / 0.94 var(--serif);
  letter-spacing: -0.025em;
}

.invite-card-head p {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--ink-soft);
}

.invite-name {
  display: inline-block;
  margin-top: 24px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #714613;
  background: #f2e3c5;
  font: 700 11px/1.2 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invite-card-body {
  padding: clamp(28px, 5vw, 52px);
}

.stage {
  display: none;
}

.stage.is-visible {
  display: block;
}

.pin-panel {
  max-width: 560px;
}

.pin-panel h2,
.form-section h2 {
  margin: 0;
  font: 600 31px/1.05 var(--serif);
}

.pin-panel > p,
.form-section > p {
  margin: 10px 0 24px;
  color: var(--ink-soft);
  font-size: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.field-label {
  color: #5c3b20;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #d9c5a5;
  border-radius: 11px;
  color: var(--ink);
  background: #fffefa;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(199, 138, 43, 0.13);
}

.pin-input {
  max-width: 280px;
  font: 600 31px/1 var(--mono);
  letter-spacing: 0.24em;
  text-align: center;
}

.pin-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.pin-security-copy {
  color: #816d5c;
  font-size: 12px;
}

.form-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
  padding: 20px;
  border-left: 3px solid var(--gold-500);
  color: #62482e;
  background: #f6ebd6;
  font-size: 13px;
}

.form-intro strong {
  color: var(--ink);
}

.form-section {
  padding: 0 0 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
  margin-bottom: 0;
}

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

.field-span-2 {
  grid-column: span 2;
}

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

.skill-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  min-height: 104px;
  padding: 17px;
  border: 1px solid #dbc8aa;
  border-radius: 14px;
  background: #fffdfa;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.skill-card:hover {
  transform: translateY(-1px);
  border-color: #bd8b45;
}

.skill-card:has(input:checked) {
  border-color: var(--gold-500);
  background: #fff7e5;
  box-shadow: inset 0 0 0 1px rgba(199, 138, 43, 0.25);
}

.skill-card input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--brown-900);
}

.skill-card strong {
  display: block;
  margin-bottom: 4px;
  font: 650 20px/1.05 var(--serif);
}

.skill-card small {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
}

.skill-details {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: minmax(150px, 0.36fr) 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.skill-card:has(input:checked) .skill-details {
  display: grid;
}

.skill-details select,
.skill-details textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 11px;
  border: 1px solid #d9c5a5;
  border-radius: 9px;
  background: white;
}

.skill-details textarea {
  min-height: 72px;
  resize: vertical;
}

.compact-choice-grid {
  align-items: stretch;
}

.compact-choice {
  min-height: 88px;
}

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

.category-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #dbc8aa;
  border-radius: 11px;
  background: #fffdfa;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.category-grid label:has(input:checked) {
  border-color: var(--gold-500);
  background: #fff7e5;
  box-shadow: inset 0 0 0 1px rgba(199, 138, 43, 0.25);
}

.category-grid input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--brown-900);
}

.choice-error {
  margin: 12px 0 0;
  color: #9c3529;
  font-size: 12px;
  font-weight: 700;
}

.remuneration-section {
  padding: 26px;
  border: 1px solid #dbc8aa;
  border-radius: 18px;
  background: #fffaf0;
}

.remuneration-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.remuneration-heading .eyebrow {
  margin: 0 0 7px;
}

.remuneration-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #35653c;
  background: #e6f0df;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.remuneration-table-wrap {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid #dbc8aa;
  border-radius: 13px;
  background: #fffefa;
}

.remuneration-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.remuneration-table th,
.remuneration-table td {
  padding: 13px 15px;
  border-bottom: 1px solid #eadcc5;
  text-align: left;
}

.remuneration-table th {
  color: #f6d28f;
  background: var(--brown-900);
  font-size: 10px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.remuneration-table td:last-child {
  color: #6f4512;
  font-weight: 800;
  white-space: nowrap;
}

.remuneration-table tr:last-child td {
  border-bottom: 0;
}

.remuneration-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold-500);
  color: #62482e;
  background: #f6ebd6;
  font-size: 12px;
}

.remuneration-note strong {
  color: var(--ink);
}

.remuneration-note p {
  margin: 6px 0 0;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
}

.form-submit p {
  max-width: 490px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.confirmation {
  max-width: 620px;
  padding: 28px;
  border: 1px solid rgba(45, 106, 62, 0.24);
  border-radius: 16px;
  background: #f1f7ed;
}

.confirmation-mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 22px;
}

.confirmation h2 {
  margin: 0;
  font: 600 34px/1 var(--serif);
}

.confirmation p {
  color: #52634e;
}

.preview-tools {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(22, 10, 3, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.preview-tools button {
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  color: #f8e6c2;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}

.preview-tools button:hover,
.preview-tools button.is-active {
  color: var(--brown-950);
  background: var(--gold-300);
}

@media (max-width: 900px) {
  .hero-grid,
  .program-card {
    grid-template-columns: 1fr;
  }

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

  .participation-grid article:nth-child(2) {
    border-right: 0;
  }

  .participation-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .hero-grid {
    padding-top: 70px;
  }

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

  .hero-logo {
    width: min(80vw, 380px);
  }

  .experience-grid,
  .product-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-item:nth-child(2) {
    border-right: 0;
  }

  .experience-item:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
}

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

  .vs-bar-inner {
    min-height: 58px;
  }

  .vs-wordmark {
    font-size: 18px;
  }

  .vs-back {
    font-size: 0;
  }

  .vs-back::after {
    content: "Voltar";
    font-size: 12px;
  }

  .product-bar-inner {
    min-height: 68px;
  }

  .product-brand {
    gap: 10px;
    font-size: 19px;
  }

  .product-brand img {
    width: 40px;
    height: 40px;
  }

  .product-back {
    gap: 7px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 64px 76px;
  }

  .hero h1 {
    font-size: clamp(51px, 17vw, 72px);
  }

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

  .hero-note {
    right: 6px;
    bottom: -8px;
  }

  .experience-grid,
  .product-flow,
  .form-grid,
  .skills-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .experience-item,
  .experience-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .experience-item:last-child {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }

  .field-span-2 {
    grid-column: auto;
  }

  .program-copy,
  .program-aside {
    padding: 32px 24px;
  }

  .program-landing {
    min-height: auto;
  }

  .program-copy h1 {
    font-size: clamp(52px, 16vw, 72px);
  }

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

  .participation-grid article,
  .participation-grid article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .participation-grid article:last-child {
    border-bottom: 0;
  }

  .participation-grid h3 {
    margin-top: 34px;
  }

  .site-footer-inner,
  .invite-brand-row,
  .form-submit,
  .remuneration-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .remuneration-badge {
    white-space: normal;
  }

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

  .invite-card {
    border-radius: 18px;
  }

  .invite-card-head,
  .invite-card-body {
    padding: 26px 20px;
  }

  .skill-details {
    grid-template-columns: 1fr;
  }

  .preview-tools {
    position: static;
    width: min(calc(100% - 26px), 980px);
    margin: -58px auto 18px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
