:root {
  --bg: #071826;
  --surface: rgba(8, 27, 41, 0.78);
  --surface-strong: #10273a;
  --text: #e8f4fb;
  --muted: #9db6c6;
  --line: rgba(111, 203, 221, 0.2);
  --travel: #1ea7c5;
  --travel-soft: #d8f5fb;
  --trade: #081f33;
  --trade-soft: #cfe7f2;
  --accent: #f29a63;
  --shadow: 0 28px 80px rgba(2, 11, 20, 0.34);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans Thai", "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(30, 167, 197, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(8, 31, 51, 0.42), transparent 26%),
    linear-gradient(180deg, #071826 0%, #0c2740 52%, #0f3e5c 100%);
}

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

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  background: rgba(7, 24, 38, 0.86);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(111, 203, 221, 0.18);
  border-radius: 999px;
  box-shadow: 0 16px 48px rgba(1, 10, 19, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--travel), var(--trade));
  box-shadow: 0 10px 24px rgba(15, 61, 145, 0.22);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 0.94rem;
}

.brand-copy small,
.main-nav a,
.hero-text,
.section-heading p,
.feature-card p,
.event-card p,
.insight-card p,
.embed-card p,
.proof-panel blockquote,
.contact-card p,
.footer p,
.footer a,
.choice-card p,
.hero-stats span {
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.96rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: rgba(232, 244, 251, 0.92);
  border-radius: 999px;
}

.hero,
.section,
.footer {
  margin-top: 28px;
}

.hero {
  display: block;
  padding: 34px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(7, 24, 38, 0.78), rgba(8, 31, 51, 0.58)),
    linear-gradient(140deg, rgba(30, 167, 197, 0.2), rgba(8, 31, 51, 0.34)),
    url("assets/background/background.png?v=20260716-2");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(111, 203, 221, 0.16);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.hero h1,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  max-width: none;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible,
.choice-card:hover,
.choice-card:focus-visible,
.feature-card:hover,
.event-card:hover,
.insight-card:hover,
.embed-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #f7b27f);
  color: #081f33;
  box-shadow: 0 18px 34px rgba(242, 154, 99, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(111, 203, 221, 0.22);
  background: rgba(13, 42, 63, 0.78);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-stats li,
.feature-card,
.event-card,
.insight-card,
.embed-card,
.proof-panel,
.contact-card,
.choice-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 34, 47, 0.08);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 38px rgba(20, 30, 42, 0.08);
}

.hero-stats li {
  padding: 12px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 17, 29, 0.32), rgba(13, 42, 63, 0.12)),
    linear-gradient(145deg, rgba(30, 167, 197, 0.68), rgba(8, 31, 51, 0.94));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(232, 244, 251, 0.12), transparent 42%),
    radial-gradient(circle at 20% 20%, rgba(214, 245, 251, 0.24), transparent 22%),
    radial-gradient(circle at 78% 32%, rgba(242, 154, 99, 0.34), transparent 18%);
}

.visual-card {
  position: absolute;
  z-index: 1;
  width: min(280px, calc(100% - 40px));
  padding: 18px;
  color: white;
  border-radius: 24px;
  border: 1px solid rgba(214, 245, 251, 0.22);
  background: rgba(6, 22, 35, 0.24);
  backdrop-filter: blur(16px);
}

.visual-card span,
.event-type,
.insight-tag,
.embed-platform,
.choice-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.visual-card strong,
.choice-card h3,
.feature-card h3,
.event-card h3,
.insight-card h3,
.embed-card h3,
.proof-panel h3 {
  display: block;
  margin: 14px 0 8px;
  font-size: 1.26rem;
}

.visual-card small {
  display: block;
  line-height: 1.6;
  color: rgba(232, 244, 251, 0.84);
}

.visual-card-travel {
  left: 20px;
  bottom: 24px;
}

.visual-card-trading {
  right: 20px;
  top: 26px;
}

.visual-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.visual-orbit-one {
  inset: 14% 12%;
}

.visual-orbit-two {
  inset: 25% 25%;
}

.section {
  padding: 34px;
  border-radius: 34px;
  background: rgba(6, 22, 35, 0.68);
  border: 1px solid rgba(111, 203, 221, 0.18);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.contact-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-heading p,
.contact-card p {
  font-size: 0.94rem;
  line-height: 1.75;
}

.choice-grid,
.feature-grid,
.events-grid,
.insights-grid,
.social-layout,
.quickmap-grid {
  margin-top: 24px;
}

.choice-grid,
.social-layout,
.quickmap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-grid,
.events-grid,
.insights-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.choice-card,
.feature-card,
.event-card,
.insight-card,
.embed-card,
.proof-panel,
.quickmap-card {
  padding: 12px;
}

.choice-card {
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.choice-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  opacity: 0.18;
}

.choice-card-travel::after {
  background: var(--travel);
}

.choice-card-trading::after {
  background: var(--trade);
}

.choice-label {
  color: white;
}

.choice-card-travel .choice-label,
.event-type {
  background: var(--travel);
}

.choice-card-trading .choice-label,
.insight-tag,
.embed-platform {
  background: var(--trade);
  color: white;
}

.choice-link,
.event-card a,
.quick-links a {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 700;
  color: var(--text);
}

.split-section .feature-card:first-child {
  border-top: 4px solid var(--travel);
}

#trading .feature-card:first-child {
  border-top-color: var(--trade);
}

.feature-card p,
.event-card p,
.insight-card p,
.embed-card p,
.proof-panel blockquote {
  line-height: 1.7;
}

.event-card a {
  color: var(--trade);
}

.embed-stack {
  display: grid;
  gap: 18px;
}

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

.quickmap-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 34, 47, 0.08);
  background: rgba(10, 33, 50, 0.78);
  box-shadow: 0 18px 42px rgba(1, 11, 20, 0.26);
}

.quickmap-card h3 {
  margin: 14px 0 16px;
  font-size: 1.2rem;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-links a {
  margin-top: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 40, 60, 0.84);
  border: 1px solid var(--line);
  font-size: 0.94rem;
}

.proof-panel {
  background:
    linear-gradient(180deg, rgba(8, 31, 51, 0.78), rgba(7, 24, 38, 0.54)),
    linear-gradient(140deg, rgba(30, 167, 197, 0.12), rgba(242, 154, 99, 0.08));
}

.proof-panel blockquote {
  margin: 18px 0;
  padding-left: 16px;
  border-left: 3px solid rgba(15, 61, 145, 0.25);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 40, 60, 0.76);
  border: 1px solid var(--line);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  padding: 28px 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, #06131f 0%, #081f33 100%);
}

.footer-brand strong,
.risk-note {
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(232, 244, 251, 0.84);
}

.risk-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 1080px) {
  .choice-grid,
  .feature-grid,
  .events-grid,
  .social-layout,
  .quickmap-grid,
  .footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 14px;
  }

  .topbar {
    align-items: flex-start;
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

  .topbar.nav-open {
    flex-wrap: wrap;
  }

  .topbar.nav-open .main-nav {
    display: flex;
  }

  .hero,
  .section,
  .footer {
    padding: 12px;
    border-radius: 28px;
  }

  .hero-stats,
  .feature-grid,
  .events-grid,
  .insights-grid,
  .trading-media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-copy small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }
}

.trading-media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trading-media-card {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(111, 203, 221, 0.18);
  background: rgba(7, 24, 38, 0.82);
}

#trading .trading-media-card:first-child {
  border-top-color: rgba(111, 203, 221, 0.18);
}

.trading-media-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

#academy .insights-grid {
  grid-template-columns: 1fr;
}

#academy .insight-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-areas:
    "tag title"
    "tag body";
  align-items: start;
  gap: 8px 18px;
  border: 2px solid rgba(111, 203, 221, 0.42);
  box-shadow: 0 18px 42px rgba(1, 11, 20, 0.22);
}

#academy .insight-tag {
  grid-area: tag;
  align-self: start;
  justify-self: start;
  margin-top: 2px;
  padding: 12px 20px;
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, #0b5ed7, #06b6d4);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 24px rgba(6, 182, 212, 0.24);
}

#academy .insight-card h3 {
  grid-area: title;
  margin: 0;
}

#academy .insight-card p {
  grid-area: body;
  margin: 0;
}

@media (max-width: 720px) {
  #academy .insight-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tag"
      "title"
      "body";
  }
}
#academy .insight-card-ebook {
  grid-template-columns: 60% 40%;
  grid-template-areas: "copy media";
  gap: 20px;
}

#academy .insight-card-ebook .insight-card-copy {
  grid-area: copy;
  min-width: 0;
}

#academy .insight-card-ebook .insight-tag,
#academy .insight-card-ebook h3,
#academy .insight-card-ebook p {
  grid-area: unset;
}

#academy .ebook-cover-wrap {
  grid-area: media;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

#academy .ebook-cover-image {
  display: block;
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  border: 1px solid rgba(111, 203, 221, 0.18);
  box-shadow: 0 18px 42px rgba(1, 11, 20, 0.26);
  object-fit: cover;
}

@media (max-width: 900px) {
  #academy .insight-card-ebook {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media";
  }

  #academy .ebook-cover-wrap {
    justify-content: flex-start;
  }
}

#academy .ebook-cover-wrap {
  flex-direction: column;
  gap: 12px;
}

#academy .ebook-cover-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 260px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  color: #ffffff;
  background: #06c755;
  box-shadow: 0 12px 24px rgba(6, 199, 85, 0.28);
}

#academy .line-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #ffffff;
  color: #06c755;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.btn-line {
  gap: 10px;
  border: 0;
  color: #ffffff;
  background: #06c755;
  box-shadow: 0 12px 24px rgba(6, 199, 85, 0.28);
}

.btn-line .line-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #ffffff;
  color: #06c755;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

#academy .insight-card-media {
  grid-template-columns: 60% 40%;
  grid-template-areas: "copy media";
  align-items: start;
  gap: 20px;
}

#academy .insight-card-media .insight-card-copy {
  grid-area: copy;
  min-width: 0;
}

#academy .insight-card-media .insight-tag {
  grid-area: unset;
  margin-bottom: 14px;
}

#academy .insight-card-media h3,
#academy .insight-card-media p {
  grid-area: unset;
}

#academy .insight-card-media-wrap {
  grid-area: media;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 260px;
}

#academy .insight-card-media-image {
  display: block;
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  border: 1px solid rgba(111, 203, 221, 0.18);
  box-shadow: 0 18px 42px rgba(1, 11, 20, 0.26);
  object-fit: cover;
}

@media (max-width: 900px) {
  #academy .insight-card-media {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media";
  }

  #academy .insight-card-media-wrap {
    justify-content: flex-start;
  }
}

#academy .insight-card-media .ebook-cover-button {
  margin-top: 14px;
}

#academy .insight-card-media-wrap-stack {
  flex-direction: column;
  gap: 12px;
}
#upcoming-trips .event-card-image {
  padding: 0;
  overflow: hidden;
}

#upcoming-trips .event-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 5;
  object-fit: cover;
}
.footer-social-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #1877f2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 24px rgba(24, 119, 242, 0.28);
  flex-shrink: 0;
}

.footer-social-logo svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}
.footer-social-facebook {
  background: #1877f2;
  box-shadow: 0 12px 24px rgba(24, 119, 242, 0.28);
}

.footer-social-youtube {
  background: #ff0033;
  box-shadow: 0 12px 24px rgba(255, 0, 51, 0.24);
}

.footer-social-tiktok {
  background: #111111;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.24);
}
#social .embed-stack {
  grid-auto-rows: auto;
}

#social .embed-card,
#social .proof-panel {
  min-height: 260px;
}
#social .embed-card-video {
  display: flex;
  flex-direction: column;
  min-height: auto;
}

#social .embed-frame-wrap {
  width: 100%;
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(111, 203, 221, 0.18);
  background: rgba(7, 24, 38, 0.82);
}

#social .embed-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
#social .embed-card-tiktok {
  display: flex;
  flex-direction: column;
}

#social .embed-frame-wrap-tiktok {
  min-height: 420px;
  padding: 12px;
}

#social .embed-card-tiktok .tiktok-embed {
  width: 100%;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

#social .proof-panel-post-wrap {
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(111, 203, 221, 0.18);
  background: rgba(7, 24, 38, 0.82);
}

#social .proof-panel-post {
  display: block;
  width: 100%;
  max-width: 100%;
}

#social .proof-panel-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 700;
  color: var(--text);
}

#social .embed-card,
#social .proof-panel {
  border: 2px solid rgba(111, 203, 221, 0.4);
  box-shadow: 0 18px 42px rgba(1, 11, 20, 0.24), inset 0 0 0 1px rgba(242, 154, 99, 0.08);
}

#social .embed-frame-wrap,
#social .proof-panel-post-wrap {
  border: 1px solid rgba(111, 203, 221, 0.32);
}

#social .proof-panel-post-wrap {
  padding: 0;
}

#social .proof-panel-post {
  min-height: 700px;
}

@media (max-width: 560px) {
  #social .proof-panel-post {
    min-height: 760px;
  }
}

#social .proof-panel-preview {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(111, 203, 221, 0.32);
  background: rgba(7, 24, 38, 0.82);
  align-items: start;
}

#social .proof-panel-preview-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

#social .proof-panel-preview-copy {
  min-width: 0;
}

#social .proof-panel-preview-platform {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #1877f2;
  color: #ffffff;
}

#social .proof-panel-preview-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: var(--text);
}

#social .proof-panel-preview-copy p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 560px) {
  #social .proof-panel-preview {
    grid-template-columns: 1fr;
  }

  #social .proof-panel-preview-image {
    aspect-ratio: 16 / 10;
  }
}
