:root {
  color-scheme: light;
  --ink: #2d241b;
  --muted: #776a5b;
  --paper: #fffdf8;
  --warm: #dc7f2c;
  --green: #1f6f5f;
  --line: rgba(83, 63, 39, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(220, 127, 44, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(31, 111, 95, 0.14), transparent 26rem),
    #f6f1e8;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.shell {
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 28px;
}

.hero {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 24px 70px rgba(68, 48, 25, 0.09);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--warm);
  font-weight: 800;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
}

.brand-note,
.hero-content p,
.entry-copy p,
.operator-entry p,
footer {
  color: var(--muted);
}

.brand-note {
  margin-top: 3px;
  font-size: 13px;
}

.hero-content {
  max-width: 760px;
  padding: 84px 0 36px;
}

.eyebrow {
  color: var(--warm);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

h1 {
  max-width: 720px;
  margin: 18px 0;
  font-size: clamp(38px, 7vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 650px;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
}

.entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
}

.entry-card,
.operator-entry {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
}

.entry-card {
  display: flex;
  gap: 22px;
  padding: 30px;
}

.customer-card {
  background: linear-gradient(145deg, #eff8f4, var(--paper));
}

.entry-icon {
  display: grid;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: #09b865;
  font-size: 14px;
  font-weight: 800;
}

.merchant-icon {
  background: var(--warm);
}

h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.entry-copy p,
.operator-entry p {
  margin: 0 0 22px;
  line-height: 1.7;
}

.status {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--green);
  background: #dff1e9;
  font-size: 14px;
  font-weight: 700;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.primary-link {
  color: #fff;
  background: var(--green);
}

.operator-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 30px;
}

.operator-entry p {
  margin-bottom: 0;
}

.secondary-link {
  flex: 0 0 auto;
  color: #7b461d;
  background: #f4dfc5;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 4px 0;
  font-size: 13px;
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 24px, 1100px);
    padding-top: 12px;
  }

  .hero {
    padding: 24px;
    border-radius: 26px;
  }

  .hero-content {
    padding: 62px 0 22px;
  }

  .hero-content p {
    font-size: 16px;
  }

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

  .entry-card {
    padding: 24px;
  }

  .operator-entry {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }
}
