:root {
  --bg: #090909;
  --bg-soft: #111111;
  --card: rgba(255, 255, 255, 0.045);
  --card-hover: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.10);
  --gold: #d5ad62;
  --gold-light: #f1d28e;
  --text: #f4f1ea;
  --muted: rgba(244, 241, 234, 0.62);
  --danger: #d98282;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(213, 173, 98, 0.14) 0%, rgba(9, 9, 9, 0) 26rem),
    linear-gradient(320deg, rgba(58, 74, 80, 0.16) 0%, rgba(9, 9, 9, 0) 34rem),
    var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 62%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  color: #12100c;
  background: var(--gold-light);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(9, 9, 9, 0.76);
  backdrop-filter: blur(22px);
}

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

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

.brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  padding: 7px;
  border: 1px solid rgba(213, 173, 98, 0.22);
  border-radius: 18px;
  background: linear-gradient(145deg, #fffdf7, #d8d3ca);
  box-shadow: 0 0 30px rgba(213, 173, 98, 0.14), 0 10px 24px rgba(0, 0, 0, 0.26);
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 780;
}

.brand small {
  display: block;
  max-width: 260px;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-nav a,
.ghost-button,
.secondary-button,
.primary-button {
  min-height: 46px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.header-nav a,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid transparent;
  color: var(--muted);
  background: transparent;
}

.header-nav a:hover,
.ghost-button:hover {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.ghost-button.compact {
  min-height: 42px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  padding: 0 22px;
  text-align: center;
  white-space: normal;
}

.primary-button {
  color: #17120a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset, 0 16px 42px rgba(213, 173, 98, 0.18);
}

.secondary-button {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.052);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 76px 0 34px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 50px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 720;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--text);
  font-size: 4.45rem;
  line-height: 0.98;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

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

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.benefits li,
.scenario-chip {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(244, 241, 234, 0.78);
  background: rgba(255, 255, 255, 0.042);
  backdrop-filter: blur(16px);
}

.benefits li {
  padding: 10px 14px;
  font-size: 0.93rem;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #14120f;
  box-shadow: var(--shadow), 0 0 80px rgba(213, 173, 98, 0.10);
  isolation: isolate;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(to top, rgba(9, 9, 9, 0.72), transparent 48%);
}

.hero-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(9, 9, 9, 0.48);
  backdrop-filter: blur(18px);
}

.hero-visual figcaption span {
  color: var(--gold-light);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.hero-visual figcaption strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.scenario-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 34px;
}

.scenario-chip {
  padding: 10px 14px;
  font-size: 0.93rem;
}

.ideas-section,
.wizard-section {
  padding: 72px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2,
.wizard-topline h2,
.step-title,
.result-card h2,
.resume-card h2 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
}

.section-heading h2 {
  font-size: 2.55rem;
}

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

.idea-card,
.wizard-shell,
.choice-card,
.product-card,
.result-card,
.resume-card,
.tool-link {
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
}

.idea-card {
  display: grid;
  min-height: 292px;
  padding: 22px;
  border-radius: var(--radius-md);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.idea-card:hover {
  transform: translateY(-3px);
  border-color: rgba(213, 173, 98, 0.36);
  background: var(--card-hover);
  box-shadow: 0 22px 84px rgba(0, 0, 0, 0.34), 0 0 44px rgba(213, 173, 98, 0.08);
}

.idea-card h3,
.choice-card h3,
.product-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.26;
}

.idea-card p,
.choice-card p,
.product-card p,
.tool-link p,
.resume-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.idea-card .card-meta {
  align-self: end;
  margin-top: 18px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(213, 173, 98, 0.22);
  border-radius: 999px;
  color: rgba(244, 241, 234, 0.82);
  background: rgba(213, 173, 98, 0.08);
  font-size: 0.78rem;
}

.idea-card .secondary-button {
  width: 100%;
  margin-top: 20px;
}

.wizard-shell {
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.wizard-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.wizard-topline h2 {
  font-size: 2rem;
}

.step-counter {
  flex: 0 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(213, 173, 98, 0.24);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(213, 173, 98, 0.075);
  font-size: 0.86rem;
}

.progress {
  height: 8px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 24px rgba(213, 173, 98, 0.32);
  transition: width 240ms ease;
}

.wizard-content {
  animation: fadeUp 260ms ease both;
}

.step-header {
  max-width: 760px;
  margin-top: 30px;
}

.step-title {
  font-size: 2.3rem;
}

.step-description {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.choice-card,
.product-card {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 150px;
  padding: 20px;
  border-radius: var(--radius-md);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.choice-card:hover,
.product-card:hover,
.tool-link:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 173, 98, 0.34);
  background: var(--card-hover);
}

.choice-card.is-selected,
.product-card.is-selected {
  border-color: rgba(241, 210, 142, 0.72);
  background: linear-gradient(145deg, rgba(213, 173, 98, 0.16), rgba(255, 255, 255, 0.058));
  box-shadow: 0 0 0 1px rgba(241, 210, 142, 0.18) inset, 0 0 48px rgba(213, 173, 98, 0.13);
}

.choice-card.is-selected::after,
.product-card.is-selected::after {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #17120a;
  background: var(--gold-light);
  content: "✓";
  font-size: 0.9rem;
  font-weight: 800;
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 15px;
  place-items: center;
  border: 1px solid rgba(213, 173, 98, 0.20);
  border-radius: 15px;
  color: var(--gold-light);
  background: rgba(213, 173, 98, 0.09);
}

.card-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.product-card {
  min-height: 310px;
  gap: 14px;
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 118px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    #121212;
}

.metal-shape {
  position: relative;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(241, 210, 142, 0.42);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.05) 38%, rgba(213, 173, 98, 0.18)),
    #2a2927;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35), 0 0 34px rgba(213, 173, 98, 0.12);
}

.metal-shape::before {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(241, 210, 142, 0.48);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.metal-shape.keychain {
  border-radius: 24px 24px 32px 32px;
}

.metal-shape.bracelet {
  width: 128px;
  height: 46px;
  border-radius: 999px;
}

.metal-shape.bracelet::before {
  display: none;
}

.metal-shape.pair {
  box-shadow: -34px 12px 0 -8px rgba(76, 73, 68, 0.92), 0 18px 34px rgba(0, 0, 0, 0.35);
}

.metal-shape.pet {
  border-radius: 50% 50% 44% 44%;
}

.product-filter-note {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  margin-top: 26px;
}

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

.option-pill {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.option-pill:hover,
.option-pill.is-selected {
  border-color: rgba(241, 210, 142, 0.58);
  background: rgba(213, 173, 98, 0.10);
  box-shadow: 0 0 34px rgba(213, 173, 98, 0.08);
}

.option-check {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: transparent;
  background: rgba(255, 255, 255, 0.03);
}

.option-pill.is-selected .option-check {
  border-color: var(--gold-light);
  color: #17120a;
  background: var(--gold-light);
}

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

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

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

.form-field label {
  color: rgba(244, 241, 234, 0.78);
  font-size: 0.91rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  outline: 0;
  padding: 13px 14px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(241, 210, 142, 0.72);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 4px rgba(213, 173, 98, 0.08);
}

.tool-panel {
  margin-top: 24px;
}

.tool-panel h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}

.tool-panel > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.tool-link {
  display: grid;
  min-height: 112px;
  padding: 16px;
  border-radius: 18px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.tool-link strong {
  color: var(--text);
}

.tool-link span {
  margin-top: 10px;
  color: var(--gold-light);
  font-size: 0.88rem;
}

.wizard-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
}

.wizard-actions .action-group,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.result-card {
  margin-top: 30px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(150deg, rgba(213, 173, 98, 0.12), rgba(255, 255, 255, 0.045) 34%),
    var(--card);
}

.result-card h2 {
  font-size: 2.35rem;
}

.result-lead {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.gift-title {
  display: inline-flex;
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(213, 173, 98, 0.28);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(213, 173, 98, 0.08);
  font-weight: 740;
}

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

.summary-row {
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.16);
}

.summary-row strong {
  display: block;
  color: rgba(244, 241, 234, 0.66);
  font-size: 0.82rem;
  font-weight: 640;
}

.summary-row span {
  display: block;
  margin-top: 7px;
  overflow-wrap: anywhere;
  color: var(--text);
  line-height: 1.45;
}

.summary-row.full {
  grid-column: 1 / -1;
}

.resume-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(16px);
}

.resume-card {
  width: min(520px, 100%);
  padding: 26px;
  border-radius: var(--radius-lg);
}

.resume-card h2 {
  font-size: 1.9rem;
}

.resume-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  max-width: min(420px, calc(100% - 40px));
  padding: 14px 16px;
  border: 1px solid rgba(241, 210, 142, 0.28);
  border-radius: 18px;
  color: var(--text);
  background: rgba(20, 18, 14, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.22);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 28px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  margin: 6px 0;
  line-height: 1.5;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(244, 241, 234, 0.74);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.noscript-message {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 16px;
  color: #17120a;
  background: var(--gold-light);
}

.is-hidden {
  display: none !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (max-width: 1040px) {
  .hero-grid,
  .details-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .ideas-grid,
  .choice-grid,
  .product-grid,
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 48px;
    height: 48px;
    padding: 6px;
    border-radius: 14px;
  }

  .brand small {
    display: none;
  }

  .header-nav a {
    display: none;
  }

  .ghost-button.compact {
    min-height: 44px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 2.62rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .wizard-actions .primary-button,
  .wizard-actions .secondary-button,
  .result-actions .primary-button,
  .result-actions .secondary-button {
    width: 100%;
  }

  .benefits,
  .scenario-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 300px;
  }

  .ideas-section,
  .wizard-section {
    padding: 52px 0;
  }

  .section-heading h2,
  .step-title,
  .result-card h2 {
    font-size: 2rem;
  }

  .wizard-shell,
  .result-card {
    padding: 18px;
  }

  .wizard-topline {
    display: grid;
  }

  .choice-grid,
  .product-grid,
  .ideas-grid,
  .details-form,
  .tool-grid,
  .summary-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .choice-card,
  .product-card {
    min-height: 142px;
  }

  .product-card {
    min-height: 284px;
  }

  .details-layout {
    gap: 18px;
  }

  .wizard-actions {
    display: grid;
  }

  .wizard-actions .action-group,
  .result-actions {
    display: grid;
  }

  .summary-row.full {
    grid-column: auto;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 2.22rem;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 260px;
  }

  .hero-visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
  }

  .section-heading h2,
  .step-title,
  .result-card h2 {
    font-size: 1.76rem;
  }

  .choice-card,
  .product-card,
  .idea-card {
    padding: 16px;
  }
}

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