:root {
  --primary: #ff7f3f;
  --primary-dark: #e06626;
  --accent: #212121;
  --bg: #0f1014;
  --card-bg: #181a21;
  --text-main: #f7f7f7;
  --text-muted: #c2c2c2;
  --success: #16a34a;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
  --radius-xl: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffb347 0, transparent 50%),
              radial-gradient(circle at bottom right, #ff512f 0, #0f1014 55%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.wrapper {
  max-width: 1000px;
  width: 100%;
}

.card {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.62));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  padding: 28px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 24px;
}

@media (max-width: 800px) {
  .card {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.brand-pill span.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 8px rgba(22, 163, 74, 0.9);
}

.brand {
  margin-bottom: 16px;
}

.brand-name {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name span.highlight {
  color: var(--primary);
}

.tagline {
  margin-top: 4px;
  font-weight: 300;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coming-soon {
  margin: 18px 0 14px;
  font-size: 22px;
  font-weight: 600;
}

.coming-soon span {
  background: linear-gradient(90deg, #ff7f3f, #ffd65a);
  -webkit-background-clip: text;
  color: transparent;
}

.description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 520px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}

.chip {
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chip i {
  font-size: 10px;
}

.notify-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.notify-input-wrapper {
  position: relative;
  flex: 2;
  min-width: 200px;
}

.notify-input-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-muted);
}

.notify-input {
  width: 100%;
  padding: 10px 12px 10px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  color: var(--text-main);
  font-size: 14px;
  outline: none;
}

.notify-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.notify-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(255, 127, 63, 0.45);
}

.notify-btn {
  flex-shrink: 0;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 12px 24px rgba(255, 127, 63, 0.35);
}

.notify-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(255, 127, 63, 0.45);
}

.notify-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(255, 127, 63, 0.3);
}

.small-text {
  font-size: 14px;
  color: var(--text-muted);
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
  margin: 16px 0 12px;
}

.section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 12px 18px;
  font-size: 14px;
}

@media (max-width: 800px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.info-block-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-main-text {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.4;
}

.info-main-text strong {
  font-weight: 600;
}

.timing-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 4px;
}

.timing-pill i {
  font-size: 14px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
}

.contact-links a {
  color: var(--primary);
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 12px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-main);
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Right side: Order & Hero */
.aside {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 50%);
  border-radius: calc(var(--radius-xl) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 800px) {
  .aside {
    order: -1;
  }
}

.hero-toast {
  border-radius: 18px;
  padding: 14px 12px;
  background: radial-gradient(circle at top left, rgba(255, 184, 108, 0.18), transparent 55%),
              radial-gradient(circle at bottom right, rgba(255, 81, 47, 0.3), rgba(12, 12, 16, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  overflow: hidden;
}

.hero-tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.hero-main {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-main span {
  color: #ffe082;
}

.hero-sub {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-floating-text {
  position: absolute;
  bottom: -12px;
  right: -8px;
  font-size: 72px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.14);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transform: rotate(-12deg);
  pointer-events: none;
}

.order-section-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.order-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-btn {
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
  color: var(--text-main);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.order-btn:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.32);
}

.order-btn-left {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.order-badge {
  font-size: 14px;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.order-logo-circle {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: #fff;
  color: #000;
}

.order-subtext {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.footnote {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

.footnote span {
  color: #ffd65a;
}
.footnote a {
  color: var(--primary);
  text-decoration: none;
}
.clear {
    clear: both;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain; 
}
.mt-2 {
  margin-top: 8px;
}