:root {
  --navy: #162a4b;
  --teal: #4ba2a2;
  --teal-light: #b1d9d6;
  --cream: #cdce6c;
  --paper: #ffffff;
  --muted: #718faa;
  --line: #e8e7db;
}

* { box-sizing: border-box; }
html, body { min-width: 320px; min-height: 100%; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--paper);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

a, button { font: inherit; }
a { color: inherit; text-decoration: none; }

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 0;
  background: var(--paper);
}

.coming-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px clamp(20px, 4vw, 72px) 20px;
  background-color: var(--navy);
  background-image: url("images/foto-angkatan.jpg");
  background-position: center 44%;
  background-size: cover;
  color: var(--paper);
}

.coming-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(12, 28, 50, 0.72);
  content: "";
  pointer-events: none;
}

.brand-header, .message, .card-footer, .corner-icon { position: relative; z-index: 1; }

.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-badge {
  position: relative;
  display: block;
  width: 208px;
  height: 96px;
  overflow: hidden;
  padding: 0;
}

.brand-badge img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-caption {
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.message {
  width: min(100%, 610px);
  margin: 44px auto 50px;
  text-align: center;
}

.message-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(177, 217, 214, 0.92);
  color: var(--navy);
}

.message-icon svg { width: 25px; height: 25px; stroke-width: 1.8; }

.eyebrow {
  margin: 25px 0 10px;
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

h1 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.04;
}

.description {
  max-width: 530px;
  margin: 24px auto 0;
  color: #e3edef;
  font-size: clamp(14px, 1.7vw, 17px);
  line-height: 1.8;
}

.stay-tuned {
  margin: 8px 0 0;
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 210px;
  margin-top: 31px;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  background: var(--teal);
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: background-color 180ms ease, transform 180ms ease;
}

.primary-button:hover { background: var(--cream); transform: translateY(-2px); }
.primary-button:focus-visible { outline: 3px solid var(--cream); outline-offset: 4px; }
.primary-button svg { width: 16px; height: 16px; stroke-width: 2; }
.primary-button svg:last-child { width: 15px; height: 15px; }

.action-status {
  min-height: 17px;
  margin: 12px 0 0;
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 700;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(177, 217, 214, 0.3);
  padding-top: 18px;
  color: #c1d4dc;
  font-size: 10px;
  font-weight: 600;
}

.card-footer span { display: inline-flex; align-items: center; gap: 7px; }
.card-footer svg { width: 14px; height: 14px; color: var(--teal); }

.corner-icon {
  position: absolute;
  width: 24px;
  height: 24px;
  color: var(--teal-light);
  opacity: 0.4;
}

.corner-icon-left { bottom: 115px; left: 8%; }
.corner-icon-right { top: 130px; right: 8%; color: var(--cream); }

@media (max-width: 620px) {
  .coming-card { min-height: 100vh; padding: 16px 16px 18px; }
  .brand-header { align-items: center; flex-direction: column; gap: 13px; text-align: center; }
  .brand-badge { width: 173px; height: 80px; }
  .brand-badge img { width: 100%; height: 100%; }
  .brand-caption { font-size: 9px; }
  .message { margin: 34px auto 42px; }
  .message-icon { width: 52px; height: 52px; }
  h1 { font-size: clamp(38px, 12vw, 58px); }
  .description { font-size: 13px; line-height: 1.7; }
  .stay-tuned { font-size: 11px; line-height: 1.6; }
  .primary-button { width: min(100%, 250px); margin-top: 26px; padding: 14px 18px; }
  .card-footer { align-items: flex-start; flex-direction: column; }
  .corner-icon { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .primary-button { transition: none; }
}
