:root {
  color-scheme: light;
  --ink: #24221f;
  --muted: #6f6b65;
  --accent: #fb6b3d;
  --accent-soft: #fff0e9;
  --cream: #fffaf4;
  --line: #eee7df;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--cream);
  font-family:
    Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 86% 22%, #ffe2d5 0, transparent 26rem),
    radial-gradient(circle at 8% 80%, #fff1ce 0, transparent 24rem),
    var(--cream);
}

main {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px 12px 18px 18px;
  background: var(--accent);
  color: white;
  font-size: 18px;
  transform: rotate(-4deg);
}

.badge {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
  padding: 48px 0 80px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

h1 span {
  color: var(--accent);
}

.description {
  max-width: 570px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  word-break: keep-all;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 12px 40px rgba(63, 49, 39, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4fbd79;
  box-shadow: 0 0 0 5px #e9f8ee;
}

.preview {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.preview-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 46% 54% 60% 40%;
  background: linear-gradient(145deg, #ffb18e, #ffd46e);
  filter: blur(2px);
  transform: rotate(-9deg);
  opacity: 0.65;
}

.phone {
  position: relative;
  width: min(320px, 78vw);
  min-height: 525px;
  overflow: hidden;
  border: 10px solid #26231f;
  border-radius: 46px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(68, 43, 27, 0.22);
  transform: rotate(4deg);
}

.phone-bar {
  display: flex;
  justify-content: space-between;
  padding: 15px 22px 8px;
  font-size: 10px;
  font-weight: 800;
}

.phone-content {
  padding: 18px;
}

.phone-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.phone-heading small {
  display: block;
  margin-bottom: 4px;
  color: #8a847d;
}

.phone-heading strong {
  display: block;
  font-size: 17px;
}

.acorn {
  padding: 7px 10px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.search {
  margin: 20px 0;
  padding: 14px;
  border-radius: 13px;
  background: #f5f3f0;
  color: #a09b94;
  font-size: 11px;
}

.deal-card {
  min-height: 185px;
  padding: 22px;
  border-radius: 23px;
  background: linear-gradient(135deg, #2d2924, #4a4138);
  color: white;
}

.deal-label {
  display: inline-block;
  margin-bottom: 32px;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--accent);
  font-size: 9px;
  font-weight: 800;
}

.deal-card strong {
  display: block;
  font-size: 17px;
}

.deal-card p {
  margin: 8px 0 0;
  color: #d5cdc5;
  font-size: 10px;
  line-height: 1.5;
}

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

.mini-grid div {
  min-height: 82px;
  padding: 13px 10px;
  border: 1px solid #f0ebe5;
  border-radius: 14px;
  color: #59544e;
  font-size: 10px;
  font-weight: 700;
}

.mini-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 9px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 0 100px;
}

.features article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(238, 231, 223, 0.85);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
}

.feature-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.features h2 {
  margin: 32px 0 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.features p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  word-break: keep-all;
}

footer {
  display: flex;
  justify-content: space-between;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: #918a82;
  font-size: 12px;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero-copy {
    text-align: center;
  }

  .description {
    margin-right: auto;
    margin-left: auto;
  }

  .preview {
    min-height: 570px;
  }

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

@media (max-width: 480px) {
  main,
  footer {
    width: min(100% - 32px, 1160px);
  }

  .nav {
    height: 76px;
  }

  .hero {
    gap: 22px;
    padding-top: 42px;
  }

  h1 {
    font-size: 44px;
  }

  .description {
    font-size: 16px;
  }

  footer {
    flex-direction: column;
    gap: 8px;
  }
}
