:root {
  --bg-0: #030b1f;
  --bg-1: #061735;
  --bg-2: #0b233f;
  --card: rgba(7, 24, 52, 0.9);
  --border: rgba(96, 246, 215, 0.32);
  --mint: #5cf4ce;
  --mint-2: #8bf7d6;
  --text-main: #f2f8ff;
  --text-sub: #b9d2ec;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #072846;
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 76% 8%, rgba(92, 244, 206, 0.34), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(35, 86, 145, 0.12), transparent 52%),
    radial-gradient(circle at 74% 92%, rgba(79, 210, 186, 0.04), transparent 64%),
    radial-gradient(circle at 26% 90%, rgba(57, 153, 137, 0.05), transparent 58%),
    radial-gradient(circle at 56% 96%, rgba(67, 163, 144, 0.03), transparent 64%),
    radial-gradient(circle at 88% 96%, rgba(28, 74, 122, 0.18), transparent 56%),
    radial-gradient(circle at 45% 44%, rgba(42, 108, 171, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(8, 34, 71, 0) 0%, rgba(7, 33, 57, 0.12) 48%, rgba(5, 27, 46, 0.3) 74%, rgba(4, 22, 39, 0.42) 100%),
    linear-gradient(160deg, var(--bg-0) 0%, var(--bg-1) 52%, var(--bg-2) 100%);
  position: relative;
  overflow-x: hidden;
}

html[lang="th"] body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  mix-blend-mode: screen;
  background:
    radial-gradient(2px 2px at 6% 24%, rgba(154, 238, 255, 0.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 11% 58%, rgba(123, 231, 255, 0.64), transparent 60%),
    radial-gradient(2px 2px at 24% 41%, rgba(134, 243, 255, 0.68), transparent 60%),
    radial-gradient(2px 2px at 38% 30%, rgba(127, 227, 255, 0.7), transparent 60%),
    radial-gradient(2.2px 2.2px at 53% 18%, rgba(147, 245, 255, 0.72), transparent 60%),
    radial-gradient(1.6px 1.6px at 68% 28%, rgba(129, 232, 255, 0.65), transparent 60%),
    radial-gradient(2px 2px at 80% 36%, rgba(129, 236, 255, 0.7), transparent 60%),
    radial-gradient(2px 2px at 90% 55%, rgba(126, 239, 255, 0.7), transparent 60%),
    radial-gradient(1.8px 1.8px at 75% 68%, rgba(128, 237, 255, 0.68), transparent 60%),
    radial-gradient(2px 2px at 61% 82%, rgba(137, 241, 255, 0.7), transparent 60%),
    radial-gradient(2px 2px at 18% 86%, rgba(155, 255, 233, 0.62), transparent 60%),
    radial-gradient(1.8px 1.8px at 32% 72%, rgba(145, 246, 255, 0.58), transparent 60%),
    radial-gradient(1.7px 1.7px at 47% 88%, rgba(123, 244, 227, 0.62), transparent 60%),
    radial-gradient(2px 2px at 84% 88%, rgba(135, 255, 232, 0.66), transparent 60%);
  animation: starTwinkle 8s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 74% 30%, rgba(97, 255, 232, 0.16), transparent 34%),
    radial-gradient(circle at 20% 62%, rgba(61, 132, 204, 0.08), transparent 46%),
    radial-gradient(circle at 55% 80%, rgba(88, 218, 204, 0.08), transparent 40%),
    radial-gradient(circle at 80% 94%, rgba(99, 255, 214, 0.03), transparent 54%),
    radial-gradient(circle at 34% 96%, rgba(88, 233, 190, 0.06), transparent 48%),
    radial-gradient(circle at 91% 97%, rgba(26, 72, 122, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 56%, rgba(6, 25, 43, 0.28) 76%, rgba(5, 22, 38, 0.48) 100%);
  animation: auroraPulse 7.5s ease-in-out infinite;
}

.landing {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  position: relative;
  z-index: 1;
}

.hero {
  min-height: auto;
  padding-top: clamp(16px, 3vh, 34px);
  padding-bottom: clamp(20px, 4vh, 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  color: #0f243f;
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(150deg, #81ffe8 0%, #4de9d8 100%);
  box-shadow: 0 12px 30px rgba(76, 236, 205, 0.4);
}

.brand-wordmark {
  display: inline-flex;
  overflow: hidden;
  white-space: nowrap;
  width: 14.8ch;
  font-size: clamp(1.7rem, 2.35vw, 2.45rem);
  letter-spacing: 0.26em;
  font-weight: 500;
  font-family: "Montserrat", "Avenir Next", "Segoe UI", Arial, sans-serif;
  color: #d4f8ff;
  text-shadow: 0 0 10px rgba(108, 246, 222, 0.2), 0 0 22px rgba(79, 238, 206, 0.1);
}

.brand-wordmark-type {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0ch;
  padding-right: 0.08em;
  border-right: 2px solid rgba(120, 248, 228, 0.96);
  animation:
    wordTypingLoop 4.4s steps(11, end) infinite,
    cursorBlink 0.72s step-end infinite,
    typingGlow 1.3s ease-in-out infinite;
  will-change: width;
}

.brand-wordmark-i {
  font-family: "Times New Roman", "Cambria", "Georgia", serif;
  font-weight: 700;
  display: inline-block;
  transform: translateY(-0.01em);
}

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(2.4rem, 6vw, 5.1rem);
  line-height: 1.08;
  font-weight: 700;
}

.cta {
  margin-top: 22px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  appearance: none;
  border: 0;
  border-radius: 16px;
  padding: 16px 30px;
  min-width: min(100%, 420px);
  font-size: clamp(1.05rem, 2vw, 2rem);
  font-weight: 700;
  color: #e9fff9;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(6, 36, 41, 0.28);
  background: linear-gradient(100deg, #63f1da 0%, #54e3cd 36%, #1f8d75 72%, #11634f 100%);
  box-shadow: 0 0 30px rgba(79, 238, 206, 0.5), 0 14px 30px rgba(10, 55, 58, 0.5);
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
  animation: ctaBlink 1.35s ease-in-out infinite;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -22% -34%;
  z-index: -1;
  background: radial-gradient(80% 120% at 50% 50%, rgba(226, 255, 248, 0.52), rgba(255, 255, 255, 0));
  animation: ctaBlinkFlash 1.35s ease-in-out infinite;
}

.cta::after {
  content: "";
  position: absolute;
  inset: auto 12% -34px;
  height: 34px;
  border-radius: 999px;
  z-index: -2;
  background: radial-gradient(60% 100% at 50% 0%, rgba(98, 243, 213, 0.62), rgba(98, 243, 213, 0));
  filter: blur(8px);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(86, 244, 214, 0.62), 0 18px 34px rgba(10, 55, 58, 0.56);
  filter: brightness(1.04);
  animation-duration: 1s;
}

.cta:active {
  transform: translateY(1px);
  filter: brightness(1.1) saturate(1.04);
  box-shadow: 0 0 46px rgba(97, 248, 219, 0.68), 0 10px 24px rgba(8, 49, 53, 0.54);
}

.cta:disabled {
  opacity: 0.74;
  cursor: wait;
  transform: none;
  animation: none;
  filter: none;
}

.cta:disabled::before,
.cta:disabled::after {
  animation: none;
  opacity: 0;
}

.status {
  min-height: 1.5em;
  margin-top: 14px;
  color: #c2f4f0;
  font-size: 0.98rem;
}

.trust-strip {
  margin-top: 14px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.trust-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  color: #7df8dd;
}

.trust-icon {
  width: 44px;
  height: 44px;
  color: #7df8dd;
  flex: 0 0 auto;
  filter:
    drop-shadow(0 0 8px rgba(109, 247, 217, 0.78))
    drop-shadow(0 0 18px rgba(95, 240, 210, 0.5));
}


.value-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  padding-inline: clamp(8px, 1vw, 14px);
}

.value-copy {
  margin: 0;
  max-width: 1120px;
  text-align: center;
  font-size: clamp(1.62rem, 2.95vw, 3.25rem);
  line-height: 1.18;
  font-weight: 650;
  text-wrap: balance;
}

.value-subcopy {
  margin: 0;
  max-width: 1120px;
  text-align: center;
  color: var(--text-sub);
  font-size: clamp(1.24rem, 2.15vw, 1.62rem);
  line-height: 1.47;
  text-wrap: pretty;
}

.value-subcopy strong {
  color: #d9fff5;
  font-weight: 800;
}

.product-shot {
  width: 100%;
  padding: clamp(14px, 2.4vw, 22px);
  border-radius: 22px;
  border: 2px solid rgba(100, 246, 215, 0.66);
  background: linear-gradient(160deg, rgba(4, 18, 42, 0.92) 0%, rgba(6, 23, 53, 0.84) 100%);
  box-shadow: 0 0 0 1px rgba(102, 245, 214, 0.16), 0 0 42px rgba(95, 239, 209, 0.3);
  display: grid;
  grid-template-columns: 200px 1fr 240px;
  gap: 18px;
  min-height: 390px;
}

.shot-sidebar,
.shot-sidepanel {
  border-radius: 14px;
  background: rgba(18, 40, 78, 0.58);
  border: 1px solid rgba(157, 224, 255, 0.2);
  padding: 14px;
}

.shot-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shot-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 10px;
  padding: 8px 12px;
  color: #dff8ff;
  font-size: 0.95rem;
  background: rgba(45, 74, 126, 0.54);
  border: 1px solid rgba(155, 228, 255, 0.2);
}

.shot-chat {
  border-radius: 14px;
  background: rgba(18, 40, 78, 0.42);
  border: 1px solid rgba(157, 224, 255, 0.24);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bubble {
  margin: 0;
  padding: 11px 13px;
  max-width: 85%;
  border-radius: 11px;
  line-height: 1.42;
  font-size: 0.93rem;
}

.bubble.left {
  align-self: flex-start;
  background: rgba(40, 59, 101, 0.9);
  color: #eaf6ff;
}

.bubble.right {
  align-self: flex-end;
  background: linear-gradient(120deg, #52efc9 0%, #76f6de 100%);
  color: #072d27;
  font-weight: 600;
}

.shot-sidepanel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-radius: 11px;
  padding: 12px;
  background: rgba(45, 74, 126, 0.54);
  border: 1px solid rgba(155, 228, 255, 0.2);
}

.side-card strong {
  font-size: 0.95rem;
}

.side-card span {
  color: #c9def3;
  font-size: 0.9rem;
}

.section-part3,
.section-part4 {
  position: relative;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.section-part3 {
  margin-top: 8px;
  padding: 0;
  background: transparent;
}

.section-part4 {
  margin-top: 4px;
  padding: 14px 0 0;
  background: transparent;
}

.section-part3::after,
.section-part4::after {
  content: none;
}

.features h2,
.final-cta h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

.feature-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  min-height: 252px;
  border-radius: 20px;
  padding: 22px 20px;
  background: rgba(9, 30, 62, 0.78);
  border: 1px solid rgba(140, 221, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(97, 242, 212, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card-icon {
  width: 188px;
  height: 146px;
  display: grid;
  place-items: center;
  align-self: center;
  margin: 0 auto 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.feature-card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 10px rgba(114, 250, 224, 0.48));
}

.feature-card-icon-img-memory {
  transform: scale(1.34);
  transform-origin: center;
  filter: drop-shadow(0 0 10px rgba(114, 250, 224, 0.48));
}

.feature-card-icon-memory {
  width: 188px;
  height: 146px;
  overflow: visible;
}

.feature-card h3 {
  margin: 0;
  color: #72f5d8;
  font-size: clamp(1.52rem, 2.4vw, 2.14rem);
}

.feature-card p {
  margin: 0;
  color: var(--text-sub);
  font-size: 1.05rem;
  line-height: 1.44;
}

.feature-card p em {
  color: #ddfff6;
  font-style: italic;
  font-weight: 700;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--text-sub);
  font-size: 1.3rem;
  line-height: 1.4;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: #78f7d8;
  font-weight: 800;
}

.feature-list em {
  color: #ddfff6;
  font-style: italic;
  font-weight: 700;
}

.final-cta {
  text-align: center;
  padding-top: 14px;
}

.final-cta p {
  margin: 14px auto 0;
  max-width: 800px;
  font-size: clamp(1.34rem, 2.55vw, 2.02rem);
  color: var(--text-sub);
}

.cta-bottom {
  margin-top: 26px;
}

.compliance-strip {
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
}

.trust-strip-footer {
  margin-top: 0;
  justify-content: flex-end;
}

.dbd-badge-static {
  padding: 0;
  display: inline-flex;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  width: 124px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.dbd-badge-link {
  text-decoration: none;
  cursor: pointer;
}

.dbd-badge-link:focus-visible {
  outline: 2px solid rgba(126, 243, 223, 0.85);
  outline-offset: 2px;
}

.dbd-badge-img {
  display: block;
  width: 230px;
  height: 44px;
  object-fit: cover;
  object-position: left center;
  opacity: 0.98;
}


@keyframes wordTypingLoop {
  0% {
    width: 0ch;
  }
  42% {
    width: 14.8ch;
  }
  82% {
    width: 14.8ch;
  }
  82.01%,
  100% {
    width: 0ch;
  }
}

@keyframes typingGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(108, 246, 222, 0.22), 0 0 22px rgba(79, 238, 206, 0.08);
  }
  50% {
    text-shadow: 0 0 18px rgba(122, 249, 229, 0.45), 0 0 34px rgba(79, 238, 206, 0.26);
  }
}

@keyframes cursorBlink {
  0%,
  48% {
    border-right-color: rgba(120, 248, 228, 0.94);
  }
  52%,
  100% {
    border-right-color: rgba(120, 248, 228, 0.08);
  }
}

@keyframes ctaBlink {
  0% {
    box-shadow: 0 0 22px rgba(79, 238, 206, 0.34), 0 14px 30px rgba(10, 55, 58, 0.42);
    filter: brightness(0.98);
  }
  42% {
    box-shadow: 0 0 30px rgba(88, 244, 214, 0.5), 0 14px 30px rgba(10, 55, 58, 0.52);
    filter: brightness(1.02);
  }
  50% {
    box-shadow: 0 0 46px rgba(105, 250, 222, 0.82), 0 16px 34px rgba(8, 49, 53, 0.62);
    filter: brightness(1.1);
  }
  100% {
    box-shadow: 0 0 22px rgba(79, 238, 206, 0.34), 0 14px 30px rgba(10, 55, 58, 0.42);
    filter: brightness(0.98);
  }
}

@keyframes ctaBlinkFlash {
  0%,
  40%,
  100% {
    opacity: 0.08;
  }
  50% {
    opacity: 0.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta,
  .cta::before {
    animation: none;
  }

  .cta::before {
    opacity: 0;
  }
}

@keyframes starTwinkle {
  0% {
    opacity: 0.56;
    transform: translateY(0);
    filter: brightness(0.95);
  }
  50% {
    opacity: 0.92;
    transform: translateY(-3px);
    filter: brightness(1.12);
  }
  100% {
    opacity: 0.68;
    transform: translateY(1px);
    filter: brightness(1);
  }
}

@keyframes auroraPulse {
  0%,
  100% {
    opacity: 0.9;
    filter: saturate(1);
  }
  50% {
    opacity: 1;
    filter: saturate(1.2);
  }
}

@media (max-width: 1060px) {
  .landing {
    gap: 38px;
  }

  .product-shot {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .shot-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .shot-pill {
    min-width: 160px;
    justify-content: center;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .landing {
    width: min(1120px, calc(100% - 20px));
    gap: 32px;
    padding: 18px 0 40px;
  }

  .hero {
    padding-top: 10px;
    padding-bottom: 22px;
  }

  .brand-lockup {
    margin-bottom: 12px;
    gap: 10px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 1.45rem;
  }

  .brand-wordmark {
    font-size: clamp(1.26rem, 5.2vw, 1.62rem);
    letter-spacing: 0.12em;
  }

  .cta {
    min-width: 100%;
  }

  .trust-strip {
    gap: 10px;
  }

  .trust-orb {
    width: auto;
    height: auto;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
  }

  .value-copy {
    font-size: clamp(1.32rem, 5.8vw, 1.8rem);
  }

  .value-subcopy {
    font-size: clamp(1.1rem, 4.4vw, 1.34rem);
    line-height: 1.52;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card-icon {
    width: 156px;
    height: 124px;
    margin-bottom: 10px;
  }

  .feature-list {
    font-size: 1.18rem;
  }

  .final-cta p {
    font-size: clamp(1.14rem, 4.8vw, 1.44rem);
  }

  .compliance-strip {
    margin-top: 16px;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .dbd-badge-static {
    width: 104px;
    height: 36px;
  }

  .dbd-badge-img {
    width: 188px;
    height: 36px;
  }

}

.legal-page {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.legal-header {
  margin-bottom: 20px;
}

.legal-brand {
  color: var(--mint);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.legal-brand:hover {
  color: var(--mint-2);
}

.legal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgba(2, 10, 24, 0.35);
}

.legal-card h1 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 4vw, 2rem);
  line-height: 1.25;
}

.legal-lead {
  margin: 0 0 24px;
  font-size: 1.08rem;
  color: var(--text-sub);
  line-height: 1.6;
}

.legal-card section {
  margin-bottom: 18px;
}

.legal-card h2 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  color: var(--mint-2);
}

.legal-card p {
  margin: 0;
  color: var(--text-sub);
  line-height: 1.65;
}

.legal-updated {
  margin-top: 24px;
  font-size: 0.92rem;
  color: rgba(185, 210, 236, 0.75);
}

.legal-card a {
  color: var(--mint);
  text-decoration: none;
}

.legal-card a:hover {
  color: var(--mint-2);
  text-decoration: underline;
}

.site-footer {
  margin-top: 28px;
  padding: 24px 20px 36px;
  text-align: center;
  border-top: 1px solid rgba(126, 243, 223, 0.12);
}

.site-footer-name {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-main);
}

.site-footer-name-en {
  margin: 4px 0 0;
  font-size: 0.92rem;
  color: rgba(185, 210, 236, 0.88);
  letter-spacing: 0.02em;
}

.site-footer-address {
  margin: 10px auto 0;
  max-width: 520px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(185, 210, 236, 0.72);
}

.site-footer-links {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.site-footer-links a {
  color: var(--mint);
  text-decoration: none;
}

.site-footer-links a:hover {
  color: var(--mint-2);
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .brand-wordmark-type {
    animation: none;
    width: 14.8ch;
    border-right: 0;
  }
}
