:root {
  color: #edf7ff;
  background: #071426;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background: #f4f8fb;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 6vw;
  color: #f7fbff;
  background: linear-gradient(180deg, rgba(4, 15, 30, 0.92), rgba(4, 15, 30, 0.42), rgba(4, 15, 30, 0));
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 5px;
  color: #1fd1ff;
  font-size: 14px;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  font-size: 15px;
  color: rgba(247, 251, 255, 0.9);
}

.nav nav a {
  position: relative;
  padding: 10px 0;
}

.nav nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #00bff5;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav nav a:hover::after,
.nav nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #071426;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/bangkok-fintech-hero.png");
  background-position: center right;
  background-size: cover;
  filter: saturate(1.04) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 13, 27, 0.98) 0%, rgba(3, 13, 27, 0.92) 28%, rgba(3, 13, 27, 0.56) 57%, rgba(3, 13, 27, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 13, 27, 0.05) 0%, rgba(3, 13, 27, 0.32) 74%, rgba(3, 13, 27, 0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 88vw);
  padding: 176px 0 76px 6vw;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: #1fd1ff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 24px 0 18px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.25;
}

.accent-line {
  width: 86px;
  height: 3px;
  margin: 28px 0 24px;
  background: #00bff5;
}

.hero-copy {
  max-width: 560px;
  margin: 0 0 32px;
  color: rgba(238, 247, 255, 0.84);
  font-size: 18px;
  line-height: 1.65;
}

.hero-contact {
  display: grid;
  gap: 16px;
  max-width: 580px;
  margin: 0;
  color: rgba(238, 247, 255, 0.88);
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
}

.hero-contact a {
  padding-left: 20px;
  border-left: 3px solid rgba(31, 209, 255, 0.72);
}

.hero-contact a:hover,
.hero-contact a:focus-visible {
  color: #ffffff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-action {
  color: #03111d;
  background: #1fd1ff;
}

.secondary-action {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.primary-action:hover,
.secondary-action:hover,
.primary-action:focus-visible,
.secondary-action:focus-visible {
  transform: translateY(-2px);
}

.service-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 28px;
  padding: 30px 6vw;
  color: #f7fbff;
  background: linear-gradient(90deg, #08243d, #06253f 48%, #051b30);
  border-top: 1px solid rgba(31, 209, 255, 0.18);
}

.service-strip > p {
  margin: 12px 0 0;
  color: #1fd1ff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.strip-grid article {
  min-height: 126px;
  padding: 16px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.strip-grid h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
}

.strip-grid p {
  margin: 0;
  color: rgba(235, 246, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.about-section,
.capability-section,
.governance-section,
.company-section,
.contact-section {
  padding: 86px 6vw;
  color: #0a1728;
  background: #f4f8fb;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(38px, 8vw, 110px);
  align-items: start;
}

.about-section h2,
.capability-header h2,
.governance-intro h2,
.contact-section h2 {
  margin: 16px 0 0;
  color: #071426;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-copy {
  display: grid;
  gap: 22px;
  padding-top: 12px;
  border-left: 1px solid rgba(5, 29, 51, 0.18);
}

.about-copy p {
  max-width: 660px;
  margin: 0;
  padding-left: 42px;
  color: #405066;
  font-size: 17px;
  line-height: 1.75;
}

.capability-section {
  background: #ffffff;
}

.capability-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.capability-header h2 {
  max-width: 760px;
  margin: 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #dce6ef;
  border-left: 1px solid #dce6ef;
}

.capability-item {
  min-height: 112px;
  padding: 28px;
  border-right: 1px solid #dce6ef;
  border-bottom: 1px solid #dce6ef;
  color: #102033;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
}

.governance-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(40px, 7vw, 96px);
  background: #08182a;
  color: #eaf7ff;
}

.governance-intro h2 {
  color: #ffffff;
}

.governance-intro p:not(.section-kicker) {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(234, 247, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.governance-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.governance-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.governance-list span {
  color: #1fd1ff;
  font-weight: 800;
  font-size: 16px;
}

.governance-list h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 20px;
}

.governance-list p {
  margin: 0;
  color: rgba(234, 247, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.company-section {
  background: #f4f8fb;
}

.company-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px);
  background: #ffffff;
  border: 1px solid #dce6ef;
}

.company-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid #dce6ef;
  border-left: 1px solid #dce6ef;
}

.company-card div {
  min-height: 94px;
  padding: 22px;
  border-right: 1px solid #dce6ef;
  border-bottom: 1px solid #dce6ef;
}

.company-card dt {
  margin-bottom: 8px;
  color: #5f7086;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-card dd {
  margin: 0;
  color: #071426;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 8vw, 100px);
  align-items: center;
  background: #ffffff;
}

.contact-section p:not(.section-kicker),
.contact-panel p {
  max-width: 640px;
  color: #405066;
  font-size: 17px;
  line-height: 1.75;
}

.contact-panel {
  display: grid;
  gap: 22px;
  padding: 34px;
  color: #071426;
  background: #f4f8fb;
  border: 1px solid #dce6ef;
}

.contact-panel > a:first-child {
  color: #007fa8;
  font-size: 20px;
  font-weight: 800;
  word-break: break-word;
}

.contact-panel .primary-action {
  justify-self: start;
  background: #071426;
  color: #ffffff;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 6vw;
  color: rgba(234, 247, 255, 0.72);
  background: #071426;
  font-size: 14px;
}

footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .nav {
    position: absolute;
    align-items: flex-start;
    padding-top: 22px;
  }

  .nav nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(720px, 92vw);
    padding: 134px 0 70px 6vw;
  }

  .service-strip,
  .about-section,
  .governance-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .strip-grid,
  .capability-grid,
  .company-card dl {
    grid-template-columns: 1fr;
  }

  .strip-grid article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-inline: 0;
  }

  .about-copy {
    border-left: 0;
    border-top: 1px solid rgba(5, 29, 51, 0.18);
    padding-top: 28px;
  }

  .about-copy p {
    padding-left: 0;
  }

  .capability-header {
    display: grid;
  }

  footer {
    display: grid;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 40px);
  }

  .subtitle {
    font-size: 23px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .about-section,
  .capability-section,
  .governance-section,
  .company-section,
  .contact-section {
    padding: 64px 6vw;
  }

  .company-card,
  .contact-panel {
    padding: 24px;
  }
}
