:root {
  --ink: #1d2420;
  --muted: #68706b;
  --paper: #f6f3ec;
  --white: #fffdf8;
  --green: #27563e;
  --green-dark: #18382a;
  --green-soft: #dce8dc;
  --orange: #ef7d43;
  --peach: #f5d9c8;
  --line: #d9ddd8;
  --shadow: 0 24px 70px rgba(32, 50, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", sans-serif;
  word-break: keep-all;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 48px));
  height: 84px;
  margin: 0 auto;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px 9px 9px 3px;
  background: var(--green);
  color: white;
  transform: rotate(-2deg);
}

.brand-mark svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #3d4540;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a,
.text-link {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--orange);
}

.header-cta {
  padding: 11px 17px;
  border: 1px solid #c9cec9;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  min-height: 690px;
  margin: 0 auto;
  padding: 66px 0 92px;
}

.hero-copy {
  padding-left: 40px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.eyebrow > span {
  width: 18px;
  height: 2px;
  background: var(--orange);
}

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(44px, 4.25vw, 67px);
  font-weight: 790;
  line-height: 1.13;
  letter-spacing: -0.06em;
}

h1 em,
.closing-section h2 em {
  position: relative;
  color: var(--green);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  right: 1px;
  bottom: 2px;
  left: 1px;
  z-index: -1;
  height: 10px;
  border-radius: 20px;
  background: #f5c5a4;
  content: "";
  transform: rotate(-1deg);
}

.hero-description {
  max-width: 480px;
  margin-bottom: 30px;
  color: #58615b;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button svg {
  width: 18px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.button-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 24px rgba(39, 86, 62, 0.2);
}

.button-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.text-link {
  border-bottom: 1px solid #9ba39e;
  font-size: 14px;
  font-weight: 700;
}

.hero-points {
  display: flex;
  gap: 22px;
  margin: 27px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  list-style: none;
}

.hero-points span {
  margin-right: 5px;
  color: var(--green);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.editor-shell {
  overflow: hidden;
  border: 1px solid #cfd5cf;
  border-radius: 16px;
  background: #f7f8f7;
  box-shadow: var(--shadow);
  transform: rotate(0.3deg);
}

.editor-topbar {
  display: flex;
  align-items: center;
  height: 47px;
  padding: 0 16px;
  border-bottom: 1px solid #e1e4e1;
  background: white;
  font-size: 10px;
}

.window-dots {
  display: flex;
  gap: 5px;
  margin-right: 20px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dfe3df;
}

.window-dots i:first-child {
  background: #ef8e6c;
}

.document-name {
  color: #4f5752;
  font-weight: 650;
}

.save-state {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  color: #6f7772;
}

.save-state span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5a9a71;
}

.save-state.is-editing span {
  background: var(--orange);
}

.editor-body {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 176px;
  min-height: 447px;
}

.tool-rail {
  padding: 15px 8px;
  border-right: 1px solid #e1e4e1;
  background: white;
}

.tool-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4px;
  padding: 8px 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #6c746f;
  font-size: 9px;
}

.tool-button:not(:disabled) {
  cursor: pointer;
}

.tool-button:not(:disabled):hover {
  background: #f1f5f1;
  color: var(--green);
}

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

.tool-button svg {
  width: 19px;
  margin-bottom: 5px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.tool-button.is-active {
  background: #e8f0e9;
  color: var(--green);
  font-weight: 700;
}

.canvas-area {
  overflow: hidden;
  min-width: 0;
  padding: 18px 20px;
  background-color: #eef0ee;
  background-image: radial-gradient(#d9ddda 0.7px, transparent 0.7px);
  background-size: 12px 12px;
}

.canvas-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 62px;
  color: #69716c;
  font-size: 9px;
}

.size-chip {
  padding: 6px 9px;
  border: 1px solid #d5d9d6;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.85);
}

.zoom-control {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.75);
}

.zoom-control button {
  display: grid;
  width: 19px;
  height: 19px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #69716c;
  cursor: pointer;
}

.zoom-control button:hover {
  background: #e7ebe8;
  color: var(--green);
}

.zoom-control span {
  min-width: 30px;
  text-align: center;
}

.banner-stage {
  filter: drop-shadow(0 12px 19px rgba(35, 43, 38, 0.18));
}

.banner-design {
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  aspect-ratio: 10 / 3.4;
  overflow: hidden;
  background: #f5eee3;
  outline: 2px solid white;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.banner-design::before {
  position: absolute;
  top: -35px;
  right: -25px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(150, 39, 43, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.banner-photo {
  background: linear-gradient(90deg, rgba(35, 27, 20, 0.08), transparent),
    url("https://images.unsplash.com/photo-1579954115545-a95591f28bfc?auto=format&fit=crop&w=900&q=85") center/cover;
}

.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7% 9%;
  color: #743235;
}

.banner-kicker {
  width: max-content;
  margin-bottom: 6%;
  padding: 3px 8px;
  border-radius: 20px;
  background: #743235;
  color: #fff8ec;
  font-size: clamp(6px, 0.65vw, 9px);
  font-weight: 700;
}

.banner-content strong {
  font-size: clamp(18px, 2.2vw, 31px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.banner-content p {
  margin: 6px 0;
  font-size: clamp(7px, 0.75vw, 11px);
}

.banner-content p b {
  color: #e75952;
}

.banner-store {
  margin-top: 3%;
  color: #886766;
  font-size: clamp(5px, 0.55vw, 8px);
}

.editable-text {
  position: relative;
  z-index: 2;
  border-radius: 3px;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 3px;
}

.editable-text:hover {
  outline-color: rgba(39, 86, 62, 0.35);
}

.editable-text.is-selected {
  outline-color: #3d8a61;
  box-shadow: 0 0 0 5px rgba(61, 138, 97, 0.12);
}

.canvas-hint {
  width: max-content;
  max-width: 100%;
  margin: 69px auto 0;
  padding: 8px 12px;
  border: 1px solid #daddda;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  color: #707873;
  font-size: 9px;
}

.canvas-hint span {
  margin-right: 5px;
  color: var(--green);
  font-weight: 800;
}

.settings-panel {
  padding: 18px 14px;
  border-left: 1px solid #e1e4e1;
  background: white;
  font-size: 9px;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  font-size: 11px;
}

.panel-heading button {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #6e7671;
  cursor: pointer;
}

.panel-heading button:hover {
  background: #eef1ee;
}

.settings-panel label {
  display: block;
  margin: 13px 0 6px;
  color: #707873;
}

.fake-input,
.editor-field,
.color-field {
  width: 100%;
  min-height: 31px;
  padding: 9px;
  border: 1px solid #dfe3df;
  border-radius: 6px;
  background: #fbfcfb;
  color: var(--ink);
  font-size: 9px;
}

.editor-field:focus,
.color-field:focus-within {
  border-color: #5b8c6d;
  outline: 2px solid rgba(91, 140, 109, 0.13);
}

.fake-select {
  display: flex;
  justify-content: space-between;
}

.panel-row {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 8px;
}

.color-field {
  display: flex;
  align-items: center;
  gap: 5px;
}

.color-field i {
  width: 14px;
  height: 14px;
  border: 1px solid #d2d5d2;
  border-radius: 3px;
  background: white;
}

.color-field input[type="color"] {
  width: 20px;
  height: 20px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d2d5d2;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.color-field input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

.color-field input[type="color"]::-webkit-color-swatch {
  border: 0;
}

.alignment-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid #dfe3df;
  border-radius: 6px;
  color: #727a75;
}

.alignment-buttons button {
  padding: 8px;
  border: 0;
  border-right: 1px solid #dfe3df;
  background: white;
  color: inherit;
  cursor: pointer;
  text-align: center;
}

.alignment-buttons button:last-child {
  border: 0;
}

.alignment-buttons button:hover,
.alignment-buttons button.is-active {
  background: #e8f0e9;
  color: var(--green);
}

.alignment-buttons button:first-child {
  text-align: left;
}

.alignment-buttons button:last-child {
  text-align: right;
}

.settings-panel.is-closed {
  display: none;
}

.paper-note {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  box-shadow: 0 9px 24px rgba(65, 52, 43, 0.13);
  font-family: "Pretendard Variable", sans-serif;
  font-size: 11px;
  line-height: 1.55;
}

.note-top {
  top: -31px;
  right: 45px;
  background: #f7c96a;
  color: #4a3d22;
  font-weight: 700;
  transform: rotate(3deg);
}

.note-bottom {
  right: -15px;
  bottom: -36px;
  background: #e7ebe5;
  color: #455148;
  transform: rotate(-2deg);
}

.trust-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 52px;
  align-items: center;
  padding: 27px max(40px, calc((100vw - 1160px) / 2));
  border-top: 1px solid #e5e5df;
  border-bottom: 1px solid #e5e5df;
  background: #fbfaf6;
}

.trust-strip p {
  margin: 0;
  color: #7c837e;
  font-size: 12px;
  font-weight: 700;
}

.business-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #3f4842;
  font-size: 13px;
  font-weight: 650;
}

.problem-section,
.steps-section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 140px 0;
}

.section-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(37px, 4vw, 56px);
  font-weight: 780;
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.section-intro .eyebrow {
  align-self: flex-start;
  margin-top: 11px;
}

.section-intro h2 {
  margin-right: 15%;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #e1e3de;
  border-radius: 4px 24px 4px 4px;
  background: #fcfbf7;
}

.benefit-card h3 {
  margin: 30px 0 12px;
  font-size: 22px;
  letter-spacing: -0.045em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.card-number {
  color: #a2a9a4;
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
}

.benefit-main {
  background: var(--green);
  color: white;
}

.benefit-main p,
.benefit-main .card-number {
  color: #cbd9cf;
}

.benefit-illustration {
  position: relative;
  height: 150px;
  margin-top: 9px;
}

.ratio-illustration > div {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #f0d9b8;
  color: #6f4c2c;
  box-shadow: 0 8px 18px rgba(9, 30, 19, 0.2);
  font-size: 10px;
  font-weight: 800;
}

.ratio-wide {
  top: 30px;
  left: 8px;
  width: 70%;
  height: 67px;
  transform: rotate(-4deg);
}

.ratio-poster {
  top: 4px;
  right: 5%;
  width: 76px;
  height: 105px;
  background: #e4815b !important;
  color: white !important;
  transform: rotate(5deg);
}

.ratio-square {
  right: 21%;
  bottom: 0;
  width: 66px;
  height: 66px;
  background: #f7efe3 !important;
  transform: rotate(-2deg);
}

.mini-icon {
  display: grid;
  width: 92px;
  height: 92px;
  margin: 33px 0 61px;
  place-items: center;
  border-radius: 50% 50% 46% 54%;
  background: var(--green-soft);
  color: var(--green);
}

.mini-icon.orange {
  background: var(--peach);
  color: #a34e2d;
}

.mini-icon svg {
  width: 47px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.template-section {
  padding: 130px max(24px, calc((100vw - 1160px) / 2)) 150px;
  background: var(--green-dark);
  color: white;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 58px;
}

.eyebrow.light {
  color: #c8d7cc;
}

.section-side-copy {
  max-width: 420px;
  margin-bottom: 5px;
  color: #b6c6ba;
  font-size: 14px;
  line-height: 1.75;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 26px 20px;
}

.template-card:nth-child(1) {
  grid-column: span 4;
}

.template-card:nth-child(2) {
  grid-column: span 8;
}

.template-card:nth-child(3) {
  grid-column: span 5;
}

.template-card:nth-child(4) {
  grid-column: span 7;
}

.template-image {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background-color: #ddd;
  box-shadow: 0 18px 38px rgba(3, 15, 8, 0.24);
}

.card-tall .template-image {
  aspect-ratio: 4 / 4.65;
}

.card-wide .template-image {
  aspect-ratio: 2 / 1;
}

.card-square .template-image {
  aspect-ratio: 1.34 / 1;
}

.template-cafe {
  background: linear-gradient(180deg, rgba(250, 246, 235, 0.08), rgba(239, 229, 207, 0.94) 74%),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1000&q=85") center/cover;
}

.template-food {
  background: linear-gradient(90deg, rgba(31, 32, 24, 0.94) 0 46%, rgba(31, 32, 24, 0.08) 72%),
    url("https://images.unsplash.com/photo-1569718212165-3a8278d5f624?auto=format&fit=crop&w=1200&q=85") right center/cover;
}

.template-sale {
  background: linear-gradient(125deg, rgba(238, 119, 61, 0.92), rgba(241, 192, 129, 0.48)),
    url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1000&q=85") center 34%/cover;
}

.template-class {
  background: linear-gradient(90deg, rgba(238, 232, 211, 0.96), rgba(238, 232, 211, 0.42)),
    url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1200&q=85") right center/cover;
}

.template-copy {
  position: absolute;
  top: 50%;
  left: 9%;
  z-index: 2;
  transform: translateY(-50%);
}

.template-cafe .template-copy {
  top: auto;
  right: 8%;
  bottom: 8%;
  left: 8%;
  transform: none;
}

.template-copy small,
.template-copy span,
.template-copy em {
  display: block;
  font-style: normal;
}

.template-copy small {
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.template-copy strong {
  display: block;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.07em;
}

.template-copy strong em {
  display: inline;
  color: #f1a264;
}

.template-copy span,
.template-copy > em {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 650;
}

.dark-copy {
  color: #24362c;
}

.dark-copy span,
.dark-copy > em {
  color: #55685d;
}

.template-label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 5px 8px;
  border: 1px solid rgba(37, 65, 49, 0.45);
  color: #274532;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sale-sticker {
  position: absolute;
  top: 15%;
  right: 8%;
  display: grid;
  width: 75px;
  height: 75px;
  place-items: center;
  border-radius: 50%;
  background: #f6df7f;
  color: #672b20;
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 700;
  transform: rotate(8deg);
}

.template-meta {
  display: flex;
  justify-content: space-between;
  padding: 13px 1px 0;
  color: #d4dfd7;
  font-size: 12px;
}

.template-meta b {
  color: #82978a;
  font-weight: 600;
}

.steps-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.steps-copy > p:last-child {
  max-width: 350px;
  margin-top: 27px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 25px 0 27px;
  border-bottom: 1px solid #dfe2de;
}

.steps-list li:first-child {
  border-top: 1px solid #dfe2de;
}

.steps-list li > span {
  display: grid;
  width: 41px;
  height: 41px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
}

.steps-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.reuse-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  min-height: 660px;
  overflow: hidden;
  background: #26322b;
  color: white;
}

.reuse-visual {
  position: relative;
  align-self: stretch;
  background: #e8dbbf;
}

.reuse-visual::before {
  position: absolute;
  top: 15%;
  left: 8%;
  width: 58%;
  height: 68%;
  border: 1px solid rgba(74, 68, 51, 0.2);
  content: "";
  transform: rotate(-3deg);
}

.store-front {
  position: absolute;
  bottom: 0;
  left: 9%;
  width: 58%;
  height: 67%;
  background: #f4eee2;
  box-shadow: 0 15px 35px rgba(63, 53, 37, 0.18);
  transform: rotate(-1deg);
}

.store-sign {
  display: grid;
  height: 25%;
  place-items: center;
  color: #355141;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 23px;
  font-weight: 700;
}

.awning {
  height: 10%;
  background: repeating-linear-gradient(90deg, #31513f 0 35px, #f2e9d7 35px 70px);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 91% 80%, 86% 100%, 81% 80%, 76% 100%, 71% 80%, 66% 100%, 61% 80%, 56% 100%, 51% 80%, 46% 100%, 41% 80%, 36% 100%, 31% 80%, 26% 100%, 21% 80%, 16% 100%, 11% 80%, 6% 100%, 0 80%);
}

.store-window {
  display: grid;
  height: 65%;
  margin: 0 8%;
  place-items: center;
  background: linear-gradient(rgba(31, 55, 42, 0.12), rgba(31, 55, 42, 0.12)),
    url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=900&q=80") center/cover;
}

.store-window span {
  padding: 19px 25px;
  background: #f2e9d9;
  color: #6b3433;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  transform: rotate(1deg);
}

.store-window b {
  color: #d75448;
}

.social-card {
  position: absolute;
  right: 7%;
  bottom: 10%;
  width: 29%;
  padding: 8px;
  background: white;
  color: #27322b;
  box-shadow: 0 20px 45px rgba(64, 50, 32, 0.28);
  transform: rotate(5deg);
}

.social-top {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 27px;
  font-size: 7px;
  font-weight: 700;
}

.social-top i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--orange);
}

.social-photo {
  aspect-ratio: 1;
  background: url("https://images.unsplash.com/photo-1579954115545-a95591f28bfc?auto=format&fit=crop&w=500&q=80") center/cover;
}

.social-lines {
  display: grid;
  gap: 5px;
  padding: 8px 2px 4px;
  font-size: 7px;
}

.social-lines span {
  width: 82%;
  height: 3px;
  background: #e9ebe9;
}

.social-lines span:last-child {
  width: 56%;
}

.reuse-copy {
  max-width: 500px;
  padding: 80px 10% 80px 12%;
}

.reuse-copy > p:not(.eyebrow) {
  margin: 27px 0 35px;
  color: #bac7be;
  font-size: 15px;
  line-height: 1.8;
}

.channel-flow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #e3eae5;
  font-size: 12px;
  font-weight: 650;
}

.channel-flow span {
  padding: 8px 11px;
  border: 1px solid #58675d;
  border-radius: 20px;
}

.channel-flow i {
  color: #849389;
  font-style: normal;
}

.closing-section {
  position: relative;
  padding: 150px 24px 160px;
  overflow: hidden;
  background: #f4efe3;
  text-align: center;
}

.closing-label {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.15em;
}

.closing-section h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(39px, 4.2vw, 60px);
}

.closing-section h2 em {
  color: var(--orange);
}

.closing-section > p {
  position: relative;
  z-index: 2;
  margin: 27px auto 31px;
  color: var(--muted);
  font-size: 15px;
}

.closing-section .button {
  position: relative;
  z-index: 2;
}

.closing-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
}

.shape-one {
  top: -80px;
  left: -75px;
  width: 260px;
  height: 260px;
  border: 45px solid #dbe5d8;
}

.shape-two {
  right: -50px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  background: #f0c6a8;
  clip-path: polygon(50% 0%, 60% 37%, 100% 50%, 61% 61%, 50% 100%, 38% 61%, 0 50%, 38% 38%);
  transform: rotate(15deg);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  gap: 30px;
  align-items: center;
  padding: 44px max(24px, calc((100vw - 1160px) / 2));
  background: #18211c;
  color: #dfe6e1;
}

.footer-brand strong {
  display: block;
  font-size: 17px;
}

.footer-brand p,
.footer-note,
.copyright {
  margin: 4px 0 0;
  color: #88968d;
  font-size: 10px;
  line-height: 1.5;
}

.footer-note {
  margin: 0;
}

.copyright {
  margin: 0;
  letter-spacing: 0.06em;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .editor-body {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .settings-panel {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
    width: 190px;
    box-shadow: -12px 0 28px rgba(37, 50, 42, 0.12);
  }

  .settings-panel.is-open {
    display: block;
  }

  .section-intro h2 {
    margin-right: 5%;
  }
}

@media (max-width: 860px) {
  .site-header {
    width: min(100% - 32px, 720px);
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 720px);
    padding: 60px 0 100px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-visual {
    margin-top: 28px;
  }

  .editor-body {
    min-height: 415px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 24px;
  }

  .business-list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .problem-section,
  .steps-section {
    width: min(100% - 32px, 720px);
    padding: 100px 0;
  }

  .section-intro {
    display: block;
  }

  .section-intro h2 {
    margin: 0;
  }

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

  .benefit-main {
    grid-column: span 2;
  }

  .section-heading-row {
    display: block;
  }

  .section-side-copy {
    margin-top: 25px;
  }

  .template-card:nth-child(1),
  .template-card:nth-child(2),
  .template-card:nth-child(3),
  .template-card:nth-child(4) {
    grid-column: span 6;
  }

  .card-tall .template-image,
  .card-wide .template-image,
  .card-square .template-image {
    aspect-ratio: 4 / 3.4;
  }

  .steps-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .reuse-section {
    grid-template-columns: 1fr;
  }

  .reuse-visual {
    min-height: 540px;
  }

  .reuse-copy {
    max-width: none;
    padding: 90px max(24px, calc((100vw - 720px) / 2));
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-note {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 70px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: 41px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .hero-points {
    flex-direction: column;
    gap: 8px;
  }

  .editor-topbar {
    padding: 0 10px;
  }

  .editor-body {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 330px;
  }

  .tool-rail {
    padding: 10px 5px;
  }

  .settings-panel {
    width: min(230px, calc(100% - 50px));
  }

  .tool-button {
    font-size: 7px;
  }

  .tool-button svg {
    width: 16px;
  }

  .canvas-area {
    padding: 14px 12px;
  }

  .canvas-toolbar {
    margin-bottom: 50px;
  }

  .banner-design {
    aspect-ratio: 10 / 4.2;
  }

  .canvas-hint {
    margin-top: 54px;
  }

  .paper-note {
    display: none;
  }

  .business-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .problem-section,
  .steps-section {
    padding: 82px 0;
  }

  h2 {
    font-size: 38px;
  }

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

  .benefit-main {
    grid-column: auto;
  }

  .benefit-card {
    min-height: 330px;
  }

  .template-section {
    padding-top: 90px;
    padding-bottom: 95px;
  }

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

  .template-card:nth-child(1),
  .template-card:nth-child(2),
  .template-card:nth-child(3),
  .template-card:nth-child(4) {
    grid-column: auto;
  }

  .card-tall .template-image,
  .card-wide .template-image,
  .card-square .template-image {
    aspect-ratio: 1.45 / 1;
  }

  .template-copy strong {
    font-size: 30px;
  }

  .reuse-visual {
    min-height: 430px;
  }

  .store-front {
    left: 5%;
    width: 67%;
  }

  .social-card {
    right: 5%;
    width: 34%;
  }

  .reuse-copy {
    padding: 78px 24px;
  }

  .channel-flow {
    flex-wrap: wrap;
  }

  .closing-section {
    padding: 105px 22px 115px;
  }

  .closing-section h2 {
    font-size: 38px;
  }

  .closing-section > p {
    font-size: 14px;
    line-height: 1.7;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .footer-note,
  .copyright {
    grid-column: auto;
    grid-row: auto;
  }
}

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

  * {
    transition: none !important;
  }
}
