:root {
  --ink: #141414;
  --muted: #49443f;
  --paper: #fffaf2;
  --surface: #f4efe7;
  --line: #ded6ca;
  --lime: #efff68;
  --coral: #b84f3c;
  --mint: #70c7b5;
  --blue: #2d6cdf;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  word-break: keep-all;
  font-family:
    Inter,
    Pretendard,
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    system-ui,
    sans-serif;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgb(255 255 255 / 58%);
  background: rgb(255 250 242 / 82%);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgb(31 24 16 / 14%);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #504a44;
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a {
  padding: 8px 0;
}

.mobile-menu-button {
  display: none;
  min-height: 40px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgb(255 250 242 / 96%);
  box-shadow: 0 18px 50px rgb(31 24 16 / 14%);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.header-cta {
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: 42px;
  padding: 130px max(24px, calc((100vw - 1120px) / 2)) 42px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgb(11 11 11 / 76%), rgb(11 11 11 / 28%) 52%, rgb(255 250 242 / 12%)),
    linear-gradient(0deg, rgb(255 250 242 / 94%), transparent 38%);
}

.hero-content,
.hero-preview {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 670px;
  padding-bottom: 70px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

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

.showrooms .eyebrow {
  color: #e36d55;
}

.hero h1 {
  margin: 0;
  font-size: clamp(72px, 12vw, 154px);
  line-height: 0.84;
  letter-spacing: 0;
}

h1,
h2,
h3,
p,
li,
a,
span,
strong {
  word-break: keep-all;
}

h2,
h3,
.metrics strong,
.metrics span,
.button {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.28;
  font-weight: 800;
}

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

.button.primary {
  background: var(--lime);
  color: var(--ink);
}

.button.secondary {
  background: rgb(255 255 255 / 16%);
  color: #fff;
  border-color: rgb(255 255 255 / 72%);
}

.hero-preview {
  justify-self: end;
  width: min(100%, 390px);
  max-height: 72vh;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 32px 90px rgb(0 0 0 / 28%);
}

.hero-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.metrics {
  width: min(1120px, calc(100% - 32px));
  margin: -18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 46px rgb(31 24 16 / 10%);
}

.metrics div {
  min-height: 126px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.download-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.balanced-title {
  word-break: keep-all;
  overflow-wrap: normal;
}

.balanced-title span {
  display: block;
}

.balanced-copy span {
  display: block;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.showroom-band p,
.download-copy p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.66;
}

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

.feature-grid article,
.flow-list li {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.feature-grid span,
.flow-list span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-weight: 950;
}

.feature-grid h3,
.flow-list h3,
.showroom-band h3 {
  margin: 22px 0 10px;
  font-size: 24px;
}

.feature-grid p,
.flow-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.58;
}

.trust-section {
  padding-top: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.trust-grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.trust-grid span {
  align-self: flex-start;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.trust-grid h3 {
  margin: auto 0 0;
  font-size: 24px;
  line-height: 1.18;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.58;
}

.showrooms {
  width: 100%;
  padding-right: max(16px, calc((100vw - 1120px) / 2));
  padding-left: max(16px, calc((100vw - 1120px) / 2));
  background: #171717;
  color: #fff;
}

.showrooms .section-heading {
  max-width: 760px;
}

.showroom-band {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: center;
}

.showroom-band img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border: 1px solid rgb(255 255 255 / 18%);
}

.showroom-band p {
  color: rgb(255 255 255 / 72%);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--lime);
  font-weight: 950;
  overflow-wrap: anywhere;
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 56px;
  align-items: start;
}

.partner-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.partner-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.66;
}

.partner-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.partner-points li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: #4c453e;
  font-weight: 800;
}

.partner-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 46px rgb(31 24 16 / 9%);
}

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

.form-row.full,
.privacy-consent,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.privacy-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  line-height: 1.45;
  word-break: keep-all;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #171717;
}

.privacy-consent strong,
.privacy-consent small { display: block; }
.privacy-consent strong { font-size: 14px; }
.privacy-consent small { margin-top: 4px; color: var(--muted); font-size: 12px; }
.privacy-consent a { color: inherit; font-weight: 900; text-underline-offset: 2px; }

.form-row label {
  color: #4f4942;
  font-size: 14px;
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 14px;
  font-weight: 750;
  outline: none;
}

.address-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.address-search {
  min-height: 48px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: 0 16px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.form-row textarea {
  min-height: 126px;
  resize: vertical;
  line-height: 1.5;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgb(239 255 104 / 60%);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.submission-result {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  margin-top: 8px;
  padding: 22px;
  border: 1px solid #2f2b26;
  background: #171717;
  color: #fff;
}

.submission-result[hidden] {
  display: none;
}

.submission-result__header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
}

.submission-result__header span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 950;
}

.submission-result__header strong {
  color: #fff;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.submission-result p {
  margin: 0;
  color: rgb(255 255 255 / 76%);
  font-weight: 750;
  line-height: 1.56;
}

.submission-summary {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px 14px;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid rgb(255 255 255 / 16%);
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.submission-summary dt {
  color: rgb(255 255 255 / 56%);
  font-size: 13px;
  font-weight: 900;
}

.submission-summary dd {
  margin: 0;
  color: #fff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.next-steps {
  display: grid;
  gap: 10px;
}

.next-steps strong {
  color: var(--lime);
  font-size: 14px;
}

.next-steps ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: rgb(255 255 255 / 76%);
  font-weight: 750;
  line-height: 1.5;
}

.copy-summary {
  min-height: 44px;
  border: 1px solid rgb(255 255 255 / 34%);
  background: rgb(255 255 255 / 8%);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.flow-section {
  background:
    linear-gradient(90deg, rgb(112 199 181 / 16%), transparent),
    var(--paper);
}

.section-heading {
  max-width: 780px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.download-section {
  margin-bottom: 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 36px;
  align-items: center;
  background: var(--mint);
  border: 1px solid #56a99a;
  padding: 44px;
}

.download-copy h2 {
  max-width: 680px;
}

.download-copy p {
  max-width: 720px;
}

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

.download-option {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgb(20 20 20 / 18%);
  background: rgb(255 250 242 / 72%);
}

.download-option.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.option-status {
  align-self: flex-start;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--ink);
  background: var(--lime);
  color: var(--ink);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 950;
}

.option-status.pending {
  background: #fff;
  color: #5d554d;
  border-color: var(--line);
}

.download-option strong {
  display: block;
  font-size: 24px;
  line-height: 1.14;
}

.download-option small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
}

.download-option.active small {
  color: rgb(255 255 255 / 74%);
}

.button.dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px 32px;
  align-items: start;
  min-height: 96px;
  padding: 28px max(24px, calc((100% - 1120px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  word-break: keep-all;
}

.site-footer strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.footer-brand span { display: block; margin-top: 4px; }
.business-info { display: flex; flex-wrap: wrap; gap: 7px 18px; font-size: 13px; line-height: 1.5; }
.business-info a, .footer-links a { color: inherit; text-underline-offset: 3px; }

.footer-consent-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.analytics-consent {
  position: fixed;
  z-index: 1000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid var(--ink);
  background: #fff;
  box-shadow: 0 12px 36px rgb(20 20 20 / 18%);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent__copy {
  min-width: 0;
}

.analytics-consent__copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.analytics-consent__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.analytics-consent__copy a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.analytics-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.analytics-consent__actions button {
  min-height: 42px;
  border: 1px solid var(--ink);
  padding: 0 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.analytics-consent__actions .primary {
  background: var(--ink);
  color: #fff;
}

@media (max-width: 640px) {
  .analytics-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .analytics-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 14px; justify-content: flex-end; font-size: 13px; }

@media (max-width: 860px) {
  .site-footer { grid-template-columns: 1fr; padding: 28px 24px; }
  .footer-links { justify-content: flex-start; }
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 118px 16px 28px;
  }

  .hero-content {
    padding-bottom: 10px;
  }

  .hero-preview {
    justify-self: center;
    width: min(82vw, 330px);
    max-height: 520px;
    border-radius: 28px;
  }

  .metrics,
  .split-section,
  .feature-grid,
  .trust-grid,
  .showroom-band,
  .partner-section,
  .flow-list,
  .download-section,
  .download-options {
    grid-template-columns: 1fr;
  }

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

  .metrics div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 74px 0;
  }

  .split-section {
    gap: 32px;
  }

  .download-section {
    padding: 30px 22px;
  }

  .partner-section {
    gap: 30px;
  }

  .partner-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

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

@media (max-width: 520px) {
  .brand-mark span {
    font-size: 15px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .site-header {
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section-copy h2,
  .section-heading h2,
  .download-copy h2 {
    font-size: 34px;
  }

  .balanced-title {
    line-height: 1.08;
  }

  .feature-grid article,
  .flow-list li {
    min-height: auto;
  }
}

