@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --paper: #fffdf8;
  --warm: #f7f2ea;
  --surface: #ffffff;
  --ink: #11282b;
  --muted: #5d6968;
  --line: #ded6ca;
  --line-strong: #c8b9a8;
  --teal: #064e52;
  --teal-dark: #043c40;
  --teal-soft: #e3efec;
  --coral: #d95228;
  --gold: #c2872d;
  --sage: #6e8b73;
  --success: #259b58;
  --shadow: 0 22px 70px rgba(34, 24, 14, 0.13);
  --soft-shadow: 0 14px 34px rgba(19, 37, 38, 0.08);
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(247, 242, 234, 0.68)),
    radial-gradient(circle at 20% 15%, rgba(232, 224, 211, 0.54), transparent 34%),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 46px);
  border-bottom: 1px solid rgba(198, 185, 169, 0.7);
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--teal);
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-label {
  margin: 0;
  color: #243637;
  font-size: 15px;
  font-weight: 600;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-link,
.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 650;
}

.header-link {
  padding: 0 8px;
  color: #263c3d;
}

.header-action {
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 7px 18px rgba(17, 40, 43, 0.05);
}

main {
  max-width: 1840px;
  margin: 0 auto;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(430px, 1fr) minmax(260px, 0.46fr);
  align-items: stretch;
  min-height: calc(100vh - 76px);
  border-bottom: 1px solid rgba(205, 191, 174, 0.62);
}

.generator-panel,
.preview-column,
.result-panel {
  min-width: 0;
}

.generator-panel {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 46px);
  border-right: 1px solid rgba(205, 191, 174, 0.68);
  background: rgba(255, 253, 248, 0.58);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
.kit-copy h2,
.faq-section h2 {
  margin: 0;
  color: #0d2c2f;
  font-family: var(--serif);
  font-weight: 650;
  line-height: 1.04;
}

h1 {
  max-width: 700px;
  font-size: clamp(36px, 4.1vw, 58px);
}

.hero-copy {
  max-width: 64ch;
  margin: 16px 0 30px;
  color: #34494a;
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.58;
}

.generator-form {
  display: grid;
  gap: 18px;
}

.field,
.style-field legend {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(130px, 0.72fr) minmax(180px, 1fr);
  align-items: center;
  gap: 12px;
}

.field {
  padding-left: 0;
}

.field::before,
.style-field legend::before {
  position: absolute;
  left: 16px;
  top: 31px;
  bottom: -28px;
  width: 1px;
  background: #d9d2c8;
  content: "";
}

.field:nth-of-type(3)::before,
.style-field legend::before {
  display: none;
}

.step-badge {
  position: relative;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.field-copy,
.style-field legend > span:last-child {
  display: grid;
  gap: 2px;
}

.field-label {
  color: #193839;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.field-help {
  color: var(--muted);
  font-size: 13px;
}

input,
select {
  min-height: 48px;
  width: 100%;
  border: 1px solid #cfc6ba;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  padding: 0 16px;
  outline: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(6, 78, 82, 0.22);
  outline-offset: 3px;
}

input:focus,
select:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(6, 78, 82, 0.08);
}

.field-note {
  grid-column: 3;
  margin-top: -8px;
  color: #0b695f;
  font-size: 13px;
}

.field-note.is-error {
  color: #a8341e;
}

.style-field {
  min-width: 0;
  margin: 3px 0 0;
  padding: 0;
  border: 0;
}

.style-field legend {
  width: 100%;
  margin-bottom: 12px;
  padding: 0;
}

.style-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(82px, 1fr));
  gap: 12px;
}

.style-chip {
  display: grid;
  gap: 8px;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.8);
  color: #172b2d;
  padding: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.style-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.style-chip.is-selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(6, 78, 82, 0.12);
}

.chip-preview {
  display: block;
  min-height: 64px;
  border-radius: 5px;
  border: 1px solid rgba(181, 162, 138, 0.6);
  background-color: #fffdf8;
}

.classic {
  background:
    radial-gradient(circle at 28% 34%, rgba(110, 139, 115, 0.42) 0 3px, transparent 4px),
    radial-gradient(circle at 70% 35%, rgba(110, 139, 115, 0.32) 0 3px, transparent 4px),
    linear-gradient(135deg, transparent 0 20%, rgba(194, 135, 45, 0.34) 20% 22%, transparent 22%),
    #fffdf8;
}

.garden {
  background:
    radial-gradient(circle at 20% 25%, rgba(110, 139, 115, 0.34), transparent 18%),
    radial-gradient(circle at 72% 70%, rgba(110, 139, 115, 0.28), transparent 18%),
    #faf6ed;
}

.minimal {
  background:
    linear-gradient(#223638 0 0) center / 24px 24px no-repeat,
    linear-gradient(90deg, transparent 18%, rgba(6, 78, 82, 0.18) 18% 20%, transparent 20% 80%, rgba(6, 78, 82, 0.18) 80% 82%, transparent 82%),
    #fffdf8;
}

.romantic {
  background:
    radial-gradient(circle at 30% 25%, rgba(217, 82, 40, 0.18), transparent 22%),
    radial-gradient(circle at 75% 72%, rgba(194, 135, 45, 0.18), transparent 20%),
    #fbefe9;
}

.modern {
  background:
    linear-gradient(135deg, #0b2528 0 58%, #d95228 58% 61%, #151515 61%),
    #0b2528;
}

.primary-action,
.download-action,
.kit-cta,
.secondary-action {
  min-height: 54px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 850;
}

button:disabled {
  cursor: not-allowed;
}

.primary-action,
.download-action {
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
  color: white;
  box-shadow: 0 14px 28px rgba(6, 78, 82, 0.25);
}

.download-action:disabled {
  background: #d7d0c5;
  color: #5e6968;
  box-shadow: none;
}

.primary-action {
  margin-top: 2px;
}

.micro-trust {
  margin: -8px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.preview-column {
  display: grid;
  grid-template-rows: auto minmax(520px, 1fr);
  padding: clamp(28px, 3vw, 42px) 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(247, 242, 234, 0.48)),
    var(--warm);
}

.preview-head,
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.preview-head h2,
.section-head h2,
.checklist h2 {
  margin: 0;
  color: #163235;
  font-size: 20px;
  line-height: 1.2;
}

.format-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
}

.sign-stage {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  margin-top: 14px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.1), rgba(255, 253, 248, 0.82)),
    linear-gradient(180deg, #e8dfd0 0 74%, #b78355 74% 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sign-stage::before,
.sign-stage::after {
  position: absolute;
  bottom: 48px;
  width: 76px;
  height: 120px;
  border: 2px solid rgba(96, 78, 59, 0.15);
  border-radius: 32px 32px 20px 20px;
  background: rgba(255, 255, 255, 0.26);
  content: "";
}

.sign-stage::before {
  left: 36px;
}

.sign-stage::after {
  right: 42px;
}

.paper-sign {
  --accent: var(--gold);
  --leaf: var(--sage);
  position: relative;
  z-index: 1;
  display: grid;
  width: min(390px, 82%);
  aspect-ratio: 8 / 10;
  justify-items: center;
  align-content: center;
  padding: 46px 46px 34px;
  border: 2px solid var(--accent);
  background: #fffefb;
  color: #161c1d;
  box-shadow: 0 18px 40px rgba(58, 43, 25, 0.2);
}

.paper-sign::before {
  position: absolute;
  inset: 12px;
  border: 1px solid color-mix(in srgb, var(--accent), white 22%);
  content: "";
  pointer-events: none;
}

.corner {
  position: absolute;
  z-index: 2;
  width: 35px;
  height: 35px;
  border-color: var(--accent);
}

.corner-one {
  top: 18px;
  left: 18px;
  border-top: 2px solid;
  border-left: 2px solid;
  border-top-left-radius: 18px;
}

.corner-two {
  top: 18px;
  right: 18px;
  border-top: 2px solid;
  border-right: 2px solid;
  border-top-right-radius: 18px;
}

.corner-three {
  bottom: 18px;
  left: 18px;
  border-bottom: 2px solid;
  border-left: 2px solid;
  border-bottom-left-radius: 18px;
}

.corner-four {
  right: 18px;
  bottom: 18px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  border-bottom-right-radius: 18px;
}

.leaf {
  position: absolute;
  width: 76px;
  height: 148px;
  opacity: 0.72;
}

.leaf::before,
.leaf::after {
  position: absolute;
  width: 14px;
  height: 30px;
  border-radius: 100% 0 100% 0;
  background: var(--leaf);
  content: "";
}

.leaf::before {
  top: 18px;
  left: 22px;
  box-shadow:
    14px 22px 0 rgba(110, 139, 115, 0.82),
    -7px 47px 0 rgba(110, 139, 115, 0.72),
    18px 73px 0 rgba(110, 139, 115, 0.7),
    3px 104px 0 rgba(110, 139, 115, 0.66);
  transform: rotate(-22deg);
}

.leaf::after {
  right: 15px;
  top: 20px;
  box-shadow:
    -11px 28px 0 rgba(110, 139, 115, 0.75),
    3px 58px 0 rgba(110, 139, 115, 0.66);
  transform: rotate(28deg);
}

.leaf-top {
  top: 6px;
  right: 9px;
  transform: rotate(24deg);
}

.leaf-bottom {
  left: 5px;
  bottom: 16px;
  transform: rotate(206deg);
}

.sign-kicker {
  position: relative;
  z-index: 3;
  margin: 0 0 3px;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.paper-sign h3 {
  position: relative;
  z-index: 3;
  max-width: 13ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.2vw, 36px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}

.sign-rule {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 178px;
  margin: 17px 0 10px;
  color: var(--accent);
}

.sign-rule::before,
.sign-rule::after {
  height: 1px;
  flex: 1;
  background: currentColor;
  content: "";
}

.sign-rule span {
  width: 13px;
  height: 13px;
  border-radius: 4px 4px 10px 10px;
  background: currentColor;
  transform: rotate(45deg);
}

.qr-wrap {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(190px, 58%);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 7px;
  background: white;
  padding: 17px;
}

.qr-code {
  display: block;
  width: 100%;
  height: 100%;
  shape-rendering: crispEdges;
}

.qr-wrap svg {
  display: block;
  width: 100%;
  height: 100%;
  shape-rendering: crispEdges;
}

.scan-line {
  margin: 18px 0 9px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.sign-copy {
  max-width: 260px;
  margin: 0;
  color: #383331;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
}

.thanks {
  margin: 20px 0 0;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.paper-sign[data-style="minimal"] {
  --accent: var(--teal);
  --leaf: transparent;
}

.paper-sign[data-style="modern"] {
  --accent: #151515;
  --leaf: transparent;
  background: #fbfbf8;
}

.paper-sign[data-style="romantic"] {
  --accent: #c67967;
  --leaf: #b98783;
  background: #fff8f5;
}

.paper-sign[data-style="garden"] {
  --accent: #9d7935;
  --leaf: #58775e;
}

.result-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(28px, 3vw, 42px) 24px;
  border-left: 1px solid rgba(205, 191, 174, 0.72);
  background: rgba(255, 253, 248, 0.78);
}

.result-status {
  margin: 0 0 1px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.hero-shell.is-generated .result-status {
  color: #0c7058;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fffdfa;
  color: #172d2f;
  text-align: center;
}

.secondary-action:disabled {
  color: #7b8584;
  background: #f2eee7;
}

.upgrade-action {
  text-align: center;
}

.checklist {
  margin-top: 7px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.checklist p {
  margin: 6px 0 17px;
  color: var(--muted);
  font-size: 14px;
}

.checklist ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 10px;
  align-items: center;
  color: #435151;
  font-size: 14px;
}

.checklist li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1.5px solid #758485;
  border-radius: 999px;
  color: white;
  content: "";
}

.checklist li.done::before {
  border-color: var(--success);
  background: var(--success);
  content: "\2713";
  font-size: 12px;
  font-weight: 900;
}

.tip-box {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  border-radius: 7px;
  background: var(--teal-soft);
  color: #174447;
  padding: 18px;
  font-size: 14px;
}

.tip-box strong {
  color: var(--teal);
}

.template-strip,
.kit-section,
.trust-row,
.faq-section {
  margin: 0 clamp(20px, 4vw, 46px);
}

.template-strip {
  padding: 28px 0 14px;
}

.section-head a {
  color: var(--teal);
  font-size: 14px;
  font-weight: 850;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(140px, 1fr));
  gap: 22px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--soft-shadow);
}

.template-card {
  margin: 0;
}

.template-card h3 {
  margin: 10px 0 0;
  color: #263b3d;
  font-size: 14px;
  text-align: center;
}

.mini-poster {
  display: grid;
  min-height: 150px;
  place-items: end center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffefa;
  color: #1f3031;
  padding: 15px 10px;
  font-family: var(--serif);
  font-size: 20px;
  text-align: center;
  box-shadow: 0 10px 22px rgba(30, 26, 20, 0.06);
}

.mini-poster span {
  max-width: 11ch;
}

.wedding-mini {
  background:
    radial-gradient(circle at 23% 18%, rgba(110, 139, 115, 0.38), transparent 18%),
    radial-gradient(circle at 82% 26%, rgba(110, 139, 115, 0.3), transparent 17%),
    #fffdf8;
}

.graduation-mini {
  background:
    linear-gradient(#131313 0 0) center 24px / 42px 12px no-repeat,
    linear-gradient(135deg, transparent 48%, #131313 48% 52%, transparent 52%) center 18px / 56px 38px no-repeat,
    #fffefa;
}

.baby-mini {
  background:
    radial-gradient(circle at 20% 20%, #fbffff 0 22px, transparent 23px),
    linear-gradient(180deg, #dff0f9, #fbf2e7);
}

.quince-mini {
  background:
    radial-gradient(circle at 50% 18%, rgba(198, 121, 103, 0.2), transparent 22%),
    #fff5f0;
}

.birthday-mini {
  background:
    radial-gradient(circle at 25% 20%, rgba(217, 82, 40, 0.28) 0 3px, transparent 4px),
    radial-gradient(circle at 70% 35%, rgba(194, 135, 45, 0.28) 0 3px, transparent 4px),
    radial-gradient(circle at 43% 70%, rgba(6, 78, 82, 0.18) 0 3px, transparent 4px),
    #fffdf8;
}

.kit-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(216, 188, 150, 0.75);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(255, 244, 231, 0.8)),
    #fff7eb;
  padding: clamp(24px, 4vw, 46px);
  box-shadow: var(--soft-shadow);
}

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

.kit-main-sign {
  display: grid;
  width: 220px;
  height: 285px;
  place-items: center;
  align-content: center;
  gap: 20px;
  border: 1px solid var(--gold);
  background: white;
  color: var(--teal);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.kit-qr,
.kit-qr::before,
.kit-qr::after {
  display: block;
  background: #111;
}

.kit-qr {
  width: 82px;
  height: 82px;
  box-shadow:
    18px 0 #111,
    36px 0 white,
    54px 0 #111,
    0 18px white,
    18px 18px #111,
    36px 18px #111,
    54px 18px white,
    0 36px #111,
    18px 36px white,
    36px 36px #111,
    54px 36px #111;
}

.kit-main-sign strong {
  max-width: 8ch;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.02;
  text-align: center;
}

.kit-card {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fffefa;
  color: #243c3e;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(30, 26, 20, 0.12);
}

.kit-card-one {
  right: 10%;
  bottom: 8px;
  width: 102px;
  height: 126px;
  transform: rotate(3deg);
}

.kit-card-two {
  left: 8%;
  top: 38px;
  width: 128px;
  height: 88px;
  transform: rotate(-5deg);
}

.kit-copy h2 {
  max-width: 12ch;
  font-size: clamp(34px, 4vw, 54px);
}

.kit-copy p {
  max-width: 62ch;
  margin: 12px 0 22px;
  color: #455756;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.62;
}

.kit-copy .kit-lead {
  color: #33494a;
  font-weight: 500;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  margin: 0 0 26px;
}

.included-grid span {
  border: 1px solid rgba(194, 135, 45, 0.35);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.54);
  padding: 12px;
  color: #283d3e;
  font-size: 14px;
  font-weight: 750;
}

.price-row {
  display: grid;
  grid-template-columns: auto minmax(220px, 0.55fr);
  align-items: center;
  gap: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(194, 135, 45, 0.28);
}

.price-row > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
}

.price-row strong {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.price-row span {
  color: #475959;
  font-size: 14px;
}

.kit-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: white;
  padding: 0 22px;
  box-shadow: 0 16px 28px rgba(217, 82, 40, 0.22);
}

.checkout-note {
  margin-bottom: 0 !important;
  color: #536463 !important;
  font-size: 13px !important;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px;
  padding: 22px 0 28px;
}

.trust-row div {
  display: grid;
  gap: 4px;
  min-height: 92px;
  align-content: center;
  border-top: 1px solid var(--line);
}

.trust-row strong {
  color: #163235;
}

.trust-row span {
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  padding: 16px 0 56px;
}

.faq-section h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  padding: 20px;
}

.faq-grid h3 {
  margin: 0 0 8px;
  color: #203839;
  font-size: 17px;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.event-landing {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) clamp(20px, 4vw, 46px) 64px;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(260px, 0.55fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.landing-hero h1 {
  max-width: 11ch;
}

.landing-hero p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: #34494a;
  font-size: 18px;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.landing-actions .primary-action,
.landing-actions .secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.landing-poster {
  display: grid;
  min-height: 430px;
  place-items: center;
  border: 1px solid rgba(216, 188, 150, 0.75);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 242, 234, 0.72)),
    var(--warm);
  box-shadow: var(--shadow);
}

.landing-poster .paper-sign {
  width: min(310px, 78%);
  padding: 38px 34px 28px;
}

.landing-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 28px;
}

.landing-details article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.landing-details h2 {
  margin: 0 0 8px;
  color: #203839;
  font-size: 18px;
}

.landing-details p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 1280px) {
  .hero-shell {
    grid-template-columns: minmax(320px, 0.95fr) minmax(390px, 1fr);
  }

  .result-panel {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .result-status {
    grid-column: 1 / -1;
  }

  .checklist {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .product-label {
    display: none;
  }

  .hero-shell,
  .kit-section,
  .trust-row,
  .faq-grid,
  .landing-hero,
  .landing-details {
    grid-template-columns: 1fr;
  }

  .generator-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .preview-column {
    grid-template-rows: auto auto;
  }

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

  .included-grid,
  .price-row,
  .result-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: relative;
    padding: 14px 18px;
  }

  .brand-name {
    font-size: 21px;
  }

  .header-link {
    display: none;
  }

  .hero-shell {
    min-height: auto;
  }

  .field,
  .style-field legend {
    grid-template-columns: 34px 1fr;
  }

  .field input,
  .field select,
  .field-note {
    grid-column: 2;
  }

  .style-options {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .preview-column {
    padding: 26px 18px;
  }

  .sign-stage {
    min-height: 480px;
  }

  .paper-sign {
    width: min(350px, 92%);
    padding: 36px 32px 28px;
  }

  .template-strip,
  .kit-section,
  .trust-row,
  .faq-section {
    margin-left: 18px;
    margin-right: 18px;
  }

  .template-grid {
    padding: 16px;
  }

  .kit-visual {
    min-height: 340px;
  }

  .kit-card-one {
    right: 3%;
    bottom: 4px;
  }

  .kit-card-two {
    left: 2%;
    top: 34px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .paper-sign,
  .result-panel,
  .kit-section {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .hero-shell.is-generated .paper-sign {
    transform: translateY(-4px);
  }
}
