/* ============================
   Reset & Base
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #f3833e;
  --color-black:   #000000;
  --color-white:   #ffffff;
  --color-gray:    #89807a;
  --color-border:  #e3e3e3;
  --color-light:   #f5f5f5;

  --font-en: 'Poppins', sans-serif;
  --font-kr: 'Noto Sans KR', sans-serif;
}

body {
  font-family: var(--font-en);
  background: #ebebeb;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.page {
  width: 375px;
  background: #ffffff;
  overflow: hidden;
}

/* ============================
   Hero Section
   ============================ */
.hero {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 40px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.hero__title-box {
  border: 2px solid rgba(255, 255, 255, 0.85);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title-box span {
  font-family: var(--font-kr);
  font-size: 32px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.36;
}

.hero__footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero__credit-name,
.hero__bird-name {
  font-family: var(--font-kr);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.hero__credit-gear,
.hero__bird-type {
  font-family: var(--font-kr);
  font-size: 8px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.hero__bird-info {
  text-align: right;
}

/* ============================
   Intro Section
   ============================ */
.intro {
  background: var(--color-white);
  border-radius: 36px;
  padding: 40px 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.intro__subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.54px;
  white-space: nowrap;
}

.intro__title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-black);
  letter-spacing: -0.84px;
  text-align: center;
  line-height: 1.5;
}

/* ============================
   Product Card Section
   ============================ */
.product-section {
  padding: 20px;
  display: flex;
  justify-content: center;
  background: var(--color-white);
}

.product-section--padded {
  padding-top: 60px;
}

.product-card {
  background: var(--color-white);
  border: 0.8px solid var(--color-border);
  border-radius: 18px;
  width: 160px;
  padding: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.product-card__img {
  width: 100%;
  height: 131px;
  object-fit: cover;
  border-radius: 9px;
  display: block;
}

.product-card__name {
  font-size: 9.76px;
  font-weight: 600;
  color: var(--color-black);
  text-align: center;
  width: 100%;
  line-height: 1.5;
}

.product-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-light);
  border-radius: 50px;
  padding: 2px 6px;
  width: 100%;
  font-size: 9.76px;
  font-weight: 500;
  color: var(--color-gray);
  text-decoration: none;
  transition: background 0.2s;
}

.product-card__btn:hover {
  background: #e0e0e0;
}

/* ============================
   Features Header
   ============================ */
.features-header {
  background: var(--color-white);
  border-radius: 36px;
  padding: 20px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-header__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.54px;
  text-align: center;
}

/* ============================
   Feature Item
   ============================ */
.feature {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--color-white);
}

.feature__icon {
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
  line-height: 1.5;
}

.feature__desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gray);
  text-align: center;
  line-height: 1.5;
}

/* ============================
   Spacer
   ============================ */
.spacer {
  height: 100px;
  background: var(--color-white);
  border-radius: 36px;
}

/* ============================
   Closing Section
   ============================ */
.closing {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.closing__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: scaleX(-1);
  filter: brightness(0.72) saturate(1.2) hue-rotate(10deg);
}

.closing__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.closing__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 40px 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.closing__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 60px;
}

.closing__title {
  font-family: var(--font-kr);
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.closing__gear {
  font-family: var(--font-kr);
  font-size: 8px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.closing__author {
  font-family: var(--font-kr);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.closing__disclosure {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  line-height: 1.5;
}
