:root {
  --page: #051a14;
  --page-deep: #03120e;
  --text: #f5f9f7;
  --muted: rgba(234, 243, 239, 0.72);
  --faint: rgba(234, 243, 239, 0.50);
  --line: rgba(188, 224, 207, 0.18);
  --accent: #72dfb2;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page-deep);
}

body {
  min-width: 1080px;
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -8%, rgba(47, 125, 92, 0.19), transparent 42%),
    linear-gradient(180deg, #08231a 0%, var(--page) 54%, var(--page-deep) 100%);
  font-family: "Yu Gothic UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.site {
  min-height: 100vh;
  padding-top: 32px;
}

.container {
  width: min(var(--container), calc(100% - 112px));
  margin-inline: auto;
}

.hero-frame {
  position: relative;
  height: 510px;
  overflow: hidden;
  border: 1px solid rgba(219, 241, 230, 0.14);
  border-radius: 18px;
  background: #0b3025;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 52%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(1, 14, 10, 0.24) 0%, transparent 31%, transparent 68%, rgba(1, 14, 10, 0.22) 100%),
    linear-gradient(90deg, rgba(1, 14, 10, 0.31) 0%, transparent 36%, transparent 82%, rgba(1, 14, 10, 0.07) 100%);
}

.brand {
  position: absolute;
  top: 34px;
  left: 38px;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.65);
}

.products {
  padding-top: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product {
  min-height: 230px;
  padding: 39px 62px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product + .product {
  padding-right: 0;
  padding-left: 62px;
  border-left: 1px solid var(--line);
}

.status {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.status-dot {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(114, 223, 178, 0.72);
  vertical-align: 1px;
}

.product h1,
.product h2 {
  margin: 0;
  font-size: 54px;
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.065em;
}

.product-upcoming .status {
  color: rgba(234, 243, 239, 0.64);
}

.product-upcoming h2 {
  color: rgba(245, 249, 247, 0.90);
}

.store-link {
  width: fit-content;
  min-height: 48px;
  margin-top: 27px;
  padding: 0 20px;
  border: 1px solid rgba(114, 223, 178, 0.56);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #eafbf3;
  background: rgba(24, 84, 62, 0.22);
  font-size: 15px;
  font-weight: 650;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.store-link:hover,
.store-link:focus-visible {
  border-color: var(--accent);
  background: rgba(34, 111, 82, 0.38);
  transform: translateY(-1px);
  outline: none;
}

.contact {
  padding: 0 0 28px;
}

.contact-main {
  min-height: 94px;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 46px;
  border-bottom: 1px solid rgba(188, 224, 207, 0.11);
}

.contact-label,
.copyright {
  margin: 0;
}

.contact-label {
  color: var(--faint);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 48px;
}

.contact-links a {
  position: relative;
  color: rgba(245, 249, 247, 0.93);
  font-size: 16px;
  font-weight: 600;
}

.contact-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--accent);
  transition: right 160ms ease;
}

.contact-links a:hover::after,
.contact-links a:focus-visible::after {
  right: 0;
}

.contact-links a:focus-visible {
  outline: none;
}

.contact-foot {
  min-height: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.copyright {
  color: rgba(234, 243, 239, 0.42);
  font-size: 12px;
  letter-spacing: 0.035em;
}
