@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #01a200;
  --primary-dark: #007a00;
  --primary-deep: #005f18;
  --primary-soft: #effff0;

  --text: #172018;
  --muted: #5f6b63;
  --background: #ffffff;
  --section-background: #f7faf7;
  --card-background: rgba(255, 255, 255, 0.9);
  --border: #e4ece5;

  --shadow-small: 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 18px 48px rgba(0, 0, 0, 0.09);
  --shadow-green: 0 24px 70px rgba(1, 162, 0, 0.18);

  --radius-small: 12px;
  --radius-medium: 18px;
  --radius-large: 30px;

  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
}

.coming-soon {
  position: relative;
  isolation: isolate;
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px 20px;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(1, 162, 0, 0.16),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(1, 162, 0, 0.11),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #f4fff5 0%,
      #ffffff 48%,
      #f7faf7 100%
    );
}

.coming-soon::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(
      rgba(1, 162, 0, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(1, 162, 0, 0.05) 1px,
      transparent 1px
    );
  background-size: 48px 48px;
  mask-image: linear-gradient(
    to bottom,
    black,
    transparent 92%
  );
}

.background-decoration {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.background-decoration-one {
  top: -180px;
  right: -140px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(1, 162, 0, 0.14);
  box-shadow:
    0 0 0 70px rgba(1, 162, 0, 0.025),
    0 0 0 140px rgba(1, 162, 0, 0.018);
}

.background-decoration-two {
  bottom: -220px;
  left: -180px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(1, 162, 0, 0.1);
  box-shadow:
    0 0 0 80px rgba(1, 162, 0, 0.022),
    0 0 0 160px rgba(1, 162, 0, 0.014);
}

.coming-soon-content {
  width: min(100%, var(--container));
  margin: 0 auto;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background:
    linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-dark) 58%,
      var(--primary-deep) 100%
    );
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--shadow-green);
}

.brand-name {
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: 1px solid rgba(1, 162, 0, 0.2);
  border-radius: 999px;
  background: rgba(239, 255, 240, 0.82);
  color: var(--primary-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin: 0 auto 24px;
  color: var(--text);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.introduction {
  max-width: 790px;
  margin: 0 auto 36px;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.8;
}

.status-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 620px;
  margin: 0 auto 54px;
  padding: 15px 20px;
  border: 1px solid rgba(1, 162, 0, 0.2);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.78);
  text-align: left;
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(16px);
}

.status-indicator {
  position: relative;
  flex: 0 0 13px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(1, 162, 0, 0.1);
}

.status-label {
  margin-bottom: 1px;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.status-message {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 30px 27px;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--card-background);
  text-align: left;
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(16px);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(1, 162, 0, 0.055);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(1, 162, 0, 0.32);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  margin-bottom: 22px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.feature-card p {
  font-size: 0.94rem;
  line-height: 1.75;
}

.launch-message {
  max-width: 700px;
  margin: 42px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

footer {
  padding: 24px 20px;
  border-top: 1px solid var(--border);
  background: #ffffff;
  text-align: center;
}

footer p {
  color: #748078;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .coming-soon {
    align-items: flex-start;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .feature-card {
    text-align: center;
  }

  .feature-card p {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .coming-soon {
    padding: 42px 16px;
  }

  .brand {
    margin-bottom: 28px;
  }

  .brand-icon {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    font-size: 1.2rem;
  }

  .brand-name {
    font-size: 1.4rem;
  }

  .eyebrow {
    margin-bottom: 16px;
    padding: 6px 11px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.6rem, 14vw, 4rem);
    line-height: 1;
  }

  .introduction {
    margin-bottom: 28px;
    font-size: 0.98rem;
  }

  .status-card {
    align-items: flex-start;
    width: 100%;
    margin-bottom: 38px;
    padding: 15px 17px;
  }

  .status-indicator {
    margin-top: 6px;
  }

  .feature-grid {
    gap: 16px;
  }

  .feature-card {
    padding: 25px 21px;
    border-radius: 22px;
  }

  .launch-message {
    margin-top: 34px;
  }

  footer {
    padding: 21px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .feature-card {
    transition: none;
  }
}