:root {
  --su-red: #ec2a35;
  --su-red-dark: #c91824;
  --su-black: #010101;
  --su-ink: #010101;
  --su-green: #169040;
  --su-white: #ffffff;
  --su-soft: #f7f7f7;
  --su-muted: #5f6368;
  --su-line: rgba(1, 1, 1, 0.1);
  --su-red-soft: rgba(236, 42, 53, 0.1);
  --su-green-soft: rgba(22, 144, 64, 0.1);
  --su-shadow: 0 24px 80px rgba(1, 1, 1, 0.12);
  --su-radius: 28px;
  --su-header-height: 72px;
  --su-heading-font: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --su-body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.sini-umroh-theme {
  margin: 0;
  font-family: var(--su-body-font);
  color: var(--su-ink);
  background: var(--su-white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.su-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--su-header-height);
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 13px clamp(16px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--su-line);
  backdrop-filter: blur(16px);
}

.su-brand,
.su-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--su-black);
}

.su-brand img,
.su-brand .custom-logo {
  display: block;
  width: auto;
  max-height: 42px;
}

.su-brand-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--su-white);
  background: linear-gradient(145deg, #ff3540 0%, var(--su-red) 54%, #d70f1c 100%);
  box-shadow: 0 10px 24px rgba(236, 42, 53, 0.22);
  font-family: var(--su-heading-font);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.su-brand-word {
  display: inline-flex;
  align-items: flex-end;
  font-family: var(--su-heading-font);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--su-black);
}

.su-brand-word small {
  margin-left: 2px;
  margin-bottom: -1px;
  color: var(--su-green);
  font-family: var(--su-body-font);
  font-size: 0.5em;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.su-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.su-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--su-black);
  font-size: 0.94rem;
  font-weight: 800;
}

.su-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}

.su-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--su-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.su-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.su-header-cta,
.su-btn,
.su-poster-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.su-header-cta,
.su-btn-primary {
  color: var(--su-white);
  background: var(--su-red);
  box-shadow: 0 14px 30px rgba(236, 42, 53, 0.25);
}

.su-header-cta:hover,
.su-btn:hover,
.su-poster-button:hover {
  transform: translateY(-1px);
}

.su-btn-secondary {
  color: var(--su-black);
  background: var(--su-white);
  border: 1px solid var(--su-line);
  box-shadow: 0 12px 26px rgba(1, 1, 1, 0.06);
}

.su-btn-tertiary {
  color: var(--su-green);
  background: var(--su-green-soft);
  border: 1px solid rgba(22, 144, 64, 0.22);
  box-shadow: 0 12px 26px rgba(22, 144, 64, 0.08);
}

.su-front-page,
.su-page-main {
  min-height: 70vh;
}

.su-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  min-height: calc(100svh - var(--su-header-height));
  padding: clamp(38px, 7vw, 94px) clamp(16px, 5vw, 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 8%, rgba(236, 42, 53, 0.13), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(22, 144, 64, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.su-hero::before {
  content: "";
  position: absolute;
  right: -14vw;
  top: 8%;
  width: 44vw;
  max-width: 620px;
  aspect-ratio: 1;
  border-radius: 42px;
  background: var(--su-red);
  transform: rotate(16deg);
  opacity: 0.08;
  pointer-events: none;
}

.su-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.su-eyebrow,
.su-section-heading span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--su-green);
  background: var(--su-green-soft);
  border: 1px solid rgba(22, 144, 64, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.su-hero h1,
.su-section-heading h2,
.su-empty-state h1 {
  font-family: var(--su-heading-font);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--su-black);
}

.su-hero h1 {
  max-width: 760px;
  margin: 16px 0 16px;
  font-size: clamp(1.95rem, 4.35vw, 3.85rem);
  line-height: 1.1;
}

.su-hero h1::selection,
.su-hero p::selection {
  color: var(--su-white);
  background: var(--su-red);
}

.su-hero p {
  max-width: 590px;
  margin: 0;
  color: var(--su-muted);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.68;
}

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

.su-hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.su-phone-frame {
  position: relative;
  width: min(318px, 74vw);
  aspect-ratio: 9 / 16;
  padding: 12px;
  border-radius: 44px;
  background: var(--su-black);
  box-shadow: var(--su-shadow);
}

.su-phone-frame::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 94px;
  height: 22px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #151515;
  z-index: 2;
}

.su-phone-frame::after {
  content: "";
  position: absolute;
  inset: auto -18px 36px auto;
  width: 86px;
  height: 86px;
  border-radius: 28px;
  background: var(--su-green);
  opacity: 0.95;
  transform: rotate(12deg);
  z-index: -1;
}

.su-phone-poster {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 28px;
  border-radius: 32px;
  overflow: hidden;
  color: var(--su-white);
  background:
    linear-gradient(180deg, rgba(1, 1, 1, 0.02), rgba(1, 1, 1, 0.86)),
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(145deg, var(--su-red), #f54a53 46%, var(--su-black) 100%);
}

.su-mini-logo {
  position: absolute;
  top: 54px;
  left: 32px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  color: var(--su-white);
  background: var(--su-red);
  border: 2px solid rgba(255, 255, 255, 0.36);
  font-family: var(--su-heading-font);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.07em;
}

.su-phone-poster span {
  font-weight: 800;
  opacity: 0.9;
}

.su-phone-poster strong {
  font-family: var(--su-heading-font);
  font-size: 1.86rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.su-phone-poster em {
  width: fit-content;
  margin-top: 4px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--su-white);
  background: var(--su-green);
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 800;
}

.su-home-reels {
  min-height: calc(100svh - var(--su-header-height));
  padding: 0;
  scroll-margin-top: var(--su-header-height);
  background:
    radial-gradient(circle at 12% 0%, rgba(236, 42, 53, 0.14), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(22, 144, 64, 0.16), transparent 28%),
    var(--su-black);
}

.su-section-heading {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto 22px;
  color: var(--su-white);
}

.su-section-heading h2 {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--su-white);
  font-size: clamp(1.4rem, 3.1vw, 2.45rem);
  line-height: 1.15;
}

.su-reels-template-main {
  background: var(--su-black);
}

.su-empty-state,
.su-plugin-warning {
  max-width: 760px;
  margin: 48px auto;
  padding: 28px;
  border: 1px solid var(--su-line);
  border-radius: var(--su-radius);
  background: var(--su-white);
  box-shadow: var(--su-shadow);
}

.su-empty-state p,
.su-plugin-warning {
  color: var(--su-muted);
  line-height: 1.7;
}


@media (max-width: 920px) {
  .su-nav {
    display: none;
  }

  .su-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 44px;
  }

  .su-hero-card {
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  :root {
    --su-header-height: 64px;
  }

  .su-site-header {
    gap: 12px;
    padding: 11px 14px;
  }

  .su-brand-word {
    font-size: 1.15rem;
  }

  .su-brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 1.12rem;
  }

  .su-header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  .su-hero {
    padding: 30px 16px 38px;
  }

  .su-hero h1 {
    font-size: clamp(1.68rem, 8.6vw, 2.42rem);
    line-height: 1.14;
  }

  .su-hero p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .su-phone-frame {
    width: min(286px, 82vw);
  }

  .su-section-heading {
    width: calc(100% - 28px);
  }
}

@media (max-width: 430px) {
  .su-hero-actions .su-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
