:root {
  --primary: #0b5cff;
  --primary-soft: #24b7ff;
  --deep-blue: #061a44;
  --white: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.76);
  --card: rgba(4, 17, 47, 0.88);
  --button: rgba(255, 255, 255, 0.11);
  --button-hover: rgba(255, 255, 255, 0.18);
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 24, 82, 0.44);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--white);
  background: #04102c;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-background {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    url("assets/8642986.webp") center center / cover no-repeat;
  transform: scale(1.02);
}

.page-overlay {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: rgba(2, 8, 24, 0.16);
  pointer-events: none;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(75px);
  opacity: 0.18;
  pointer-events: none;
}

.ambient-one {
  top: -130px;
  left: -90px;
  background: #0875ff;
}

.ambient-two {
  right: -140px;
  bottom: -120px;
  background: #2ac5ff;
}

.page-shell {
  width: min(100%, 680px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 18px 24px;
}

.profile-card {
  position: relative;
  padding: 34px 24px 28px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.share-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 20px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.share-button:hover {
  transform: translateY(-2px) rotate(6deg);
  background: rgba(255, 255, 255, 0.18);
}

.logo-wrap {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.23), rgba(255,255,255,0.06));
  box-shadow: 0 18px 35px rgba(0, 70, 255, 0.28);
}

.brand-logo {
  width: 104px;
  height: 104px;
  object-fit: contain;
  border-radius: 24px;
}

.verified-label {
  margin-bottom: 8px;
  text-align: center;
  color: #70d7ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

h1 {
  text-align: center;
  font-size: clamp(30px, 6vw, 42px);
  line-height: 1.1;
}

.tagline {
  max-width: 480px;
  margin: 12px auto 18px;
  text-align: center;
  color: var(--text-soft);
  line-height: 1.65;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 26px;
}

.trust-row span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.06);
  font-size: 11px;
  font-weight: 600;
}

.link-list {
  display: grid;
  gap: 13px;
}

.link-button {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--button);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.link-button:hover {
  transform: translateY(-3px);
  border-color: rgba(112, 215, 255, 0.65);
  background: var(--button-hover);
}

.primary-link {
  background: linear-gradient(135deg, rgba(11, 92, 255, 0.95), rgba(36, 183, 255, 0.82));
  border-color: rgba(255, 255, 255, 0.3);
}

.link-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255,255,255,0.13);
  font-size: 23px;
}

.link-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.link-copy strong {
  font-size: 15px;
  line-height: 1.3;
}

.link-copy small {
  color: rgba(255,255,255,0.68);
  font-size: 11.5px;
  line-height: 1.45;
}

.link-arrow {
  font-size: 30px;
  color: rgba(255,255,255,0.68);
}

.social-section {
  margin-top: 28px;
  text-align: center;
}

.social-section p {
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-links img{
    width:28px;
    height:28px;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.17);
}

.site-footer {
  padding: 28px 12px 10px;
  text-align: center;
  color: rgba(255,255,255,0.68);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--white);
}

.footer-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25c7ff;
  box-shadow: 0 0 14px #25c7ff;
}

.site-footer > p {
  font-size: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  opacity: 0.74;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 20;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(3, 14, 42, 0.92);
  color: white;
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  transform: translate(-50%, 30px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 520px) {
  .page-shell {
    padding: 16px 12px 20px;
  }

  .profile-card {
    padding: 30px 15px 24px;
    border-radius: 26px;
  }

  .link-button {
    grid-template-columns: 44px 1fr 18px;
    min-height: 78px;
    padding: 13px;
    border-radius: 18px;
  }

  .link-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .link-copy strong {
    font-size: 14px;
  }

  .link-copy small {
    font-size: 10.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ===========================
   ARTIKEL SEO DI DALAM CARD
=========================== */

.profile-card {
  width: 100%;
  height: auto;
  max-height: none;
  overflow: visible;
  padding-bottom: 30px;
}

.profile-card .seo-section {
  width: 100%;
  margin: 34px 0 0;
  padding: 32px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: left;
}

.profile-card .seo-section,
.profile-card .seo-section * {
  text-transform: none;
}

.seo-label {
  margin-bottom: 10px;
  color: #54c7ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase !important;
}

.seo-section h2 {
  max-width: 590px;
  margin: 0 auto 22px;
  color: #ffffff;
  font-size: clamp(24px, 4.8vw, 31px);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.seo-section h3 {
  margin: 28px 0 10px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.4;
  text-align: left;
}

.seo-section p {
  margin: 0 0 16px;
  color: rgba(229, 237, 255, 0.82);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
}

.seo-section strong {
  color: #ffffff;
  font-weight: 700;
}

.seo-section a {
  color: #43bdff;
  font-weight: 650;
}

.seo-section a:hover {
  text-decoration: underline;
}

.seo-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 30px;
}

.seo-benefit {
  min-width: 0;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.seo-benefit h4 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
}

.seo-benefit p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.faq-box {
  margin-top: 24px;
}

.faq-box > h3 {
  margin-bottom: 15px;
  text-align: center;
}

.faq-item {
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.faq-item summary {
  position: relative;
  padding: 16px 48px 16px 18px;
  cursor: pointer;
  list-style: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
  text-align: left;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: #43bdff;
  font-size: 22px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item p {
  margin: 0;
  padding: 16px 18px 18px;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .profile-card .seo-section {
    margin-top: 30px;
    padding-top: 28px;
  }

  .seo-section h2 {
    font-size: 24px;
  }

  .seo-section h3 {
    font-size: 18px;
  }

  .seo-section p {
    font-size: 14px;
    line-height: 1.72;
  }

  .seo-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .seo-section h2 {
    font-size: 22px;
  }

  .faq-item summary {
    padding-left: 15px;
  }

  .faq-item p {
    padding-left: 15px;
    padding-right: 15px;
  }
}