/*
Theme Name: Sini Umroh Coming Soon
Theme URI: https://siniumroh.com/
Author: OpenAI for Sini Umroh
Author URI: https://openai.com/
Description: Theme WordPress sederhana untuk menampilkan halaman "website dalam masa pengembangan" sesuai brand guideline Sini Umroh.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sini-umroh-coming-soon
Tags: coming-soon, landing-page, responsive, custom-logo
*/

:root {
  --su-red: #EC2A35;
  --su-red-dark: #c90f1b;
  --su-black: #010101;
  --su-green: #169040;
  --su-white: #FFFFFF;
  --su-muted: #61666d;
  --su-soft: #f7f7f8;
  --su-line: rgba(1, 1, 1, 0.08);
  --su-shadow: 0 24px 70px rgba(1, 1, 1, 0.12);
  --su-radius-xl: 34px;
  --su-radius-lg: 24px;
  --su-radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0 !important;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--su-black);
  background:
    radial-gradient(circle at top left, rgba(236, 42, 53, 0.14), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(22, 144, 64, 0.13), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, #fbfbfb 45%, #f3f4f5 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.admin-bar .su-page {
  min-height: calc(100vh - 32px);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.su-page {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 4vw, 58px);
}

.su-page::before,
.su-page::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.9;
}

.su-page::before {
  width: 18rem;
  height: 18rem;
  top: -6rem;
  right: -4rem;
  background: rgba(236, 42, 53, 0.11);
}

.su-page::after {
  width: 16rem;
  height: 16rem;
  left: -5rem;
  bottom: -6rem;
  background: rgba(22, 144, 64, 0.12);
}

.su-shell {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}

.su-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--su-radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--su-shadow);
  backdrop-filter: blur(18px);
}

.su-hero {
  padding: clamp(28px, 5vw, 58px);
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.su-logo {
  display: inline-flex;
  width: min(255px, 76vw);
  margin-bottom: clamp(32px, 6vw, 72px);
}

.su-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(236, 42, 53, 0.18);
  border-radius: 999px;
  color: var(--su-red-dark);
  background: rgba(236, 42, 53, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.su-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--su-red);
  box-shadow: 0 0 0 7px rgba(236, 42, 53, 0.13);
}

.su-title {
  max-width: 680px;
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(2.65rem, 6vw, 5.9rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.su-title span {
  color: var(--su-red);
}

.su-description {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--su-muted);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
}

.su-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.su-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.su-button:hover,
.su-button:focus-visible {
  transform: translateY(-2px);
}

.su-button-primary {
  color: var(--su-white);
  background: var(--su-red);
  box-shadow: 0 16px 28px rgba(236, 42, 53, 0.25);
}

.su-button-primary:hover,
.su-button-primary:focus-visible {
  background: var(--su-red-dark);
  color: var(--su-white);
}

.su-button-secondary {
  color: var(--su-black);
  background: var(--su-white);
  border: 1px solid var(--su-line);
}

.su-button-secondary:hover,
.su-button-secondary:focus-visible {
  box-shadow: 0 14px 24px rgba(1, 1, 1, 0.08);
}

.su-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: clamp(34px, 5vw, 70px);
}

.su-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(22, 144, 64, 0.2);
  border-radius: 999px;
  color: #0d632c;
  background: rgba(22, 144, 64, 0.07);
  font-size: 0.86rem;
  font-weight: 700;
}

.su-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--su-green);
}

.su-side {
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 640px;
  background:
    linear-gradient(180deg, rgba(1, 1, 1, 0.92), rgba(1, 1, 1, 0.86)),
    var(--su-black);
  color: var(--su-white);
}

.su-mini-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--su-red), #ff424c);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  box-shadow: 0 18px 34px rgba(236, 42, 53, 0.36);
}

.su-side-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.su-status {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  text-align: right;
}

.su-progress {
  margin: clamp(60px, 10vw, 118px) 0 0;
}

.su-progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}

.su-progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.su-progress-bar {
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--su-red), var(--su-green));
  animation: suGrow 1.1s ease both;
}

@keyframes suGrow {
  from { width: 0; }
  to { width: 72%; }
}

.su-side-title {
  margin: 26px 0 0;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.su-side-copy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.su-feature-list {
  display: grid;
  gap: 12px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.su-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.su-check {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--su-white);
  background: var(--su-green);
  font-size: 0.85rem;
  line-height: 1;
}

.su-footer {
  margin-top: clamp(38px, 6vw, 84px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.su-domain {
  color: var(--su-white);
  font-weight: 800;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@media (max-width: 900px) {
  .su-shell {
    grid-template-columns: 1fr;
  }

  .su-hero,
  .su-side {
    min-height: auto;
  }

  .su-logo {
    margin-bottom: 42px;
  }

  .su-side {
    order: 2;
  }
}

@media (max-width: 600px) {
  body.admin-bar .su-page {
    min-height: calc(100vh - 46px);
  }

  .su-page {
    padding: 14px;
  }

  .su-card {
    border-radius: 26px;
  }

  .su-title {
    font-size: clamp(2.45rem, 13vw, 4.15rem);
  }

  .su-actions,
  .su-button {
    width: 100%;
  }

  .su-side-top,
  .su-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .su-status {
    text-align: left;
  }
}
