:root {
  --ink: #17130f;
  --ink-soft: #3f3933;
  --cream: #f5f0e8;
  --paper: #fbf8f2;
  --white: #fffdf8;
  --orange: #ff5c2a;
  --orange-deep: #e83f12;
  --lime: #d8f35a;
  --line: rgba(23, 19, 15, 0.14);
  --font-thai: "IBM Plex Sans Thai", sans-serif;
  --font-latin: "Manrope", "IBM Plex Sans Thai", sans-serif;
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-thai);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.material-symbols-rounded {
  display: inline-block;
  direction: ltr;
  font-family: "Material Symbols Rounded";
  font-feature-settings: "liga";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 99px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.9);
  box-shadow: 0 1px 0 rgba(23, 19, 15, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.brand-dot {
  color: var(--orange);
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav > a:not(.nav-contact) {
  position: relative;
}

.desktop-nav > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav > a:not(.nav-contact):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 11px 17px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}

.nav-contact .material-symbols-rounded,
.button .material-symbols-rounded {
  font-size: 18px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 154px 0 48px;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 19, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 19, 15, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--paper));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.98fr);
  gap: 86px;
  align-items: center;
}

.section-kicker {
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.05em;
}

h1 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 1.03;
  font-weight: 700;
}

h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 35px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.8;
}

.hero-lead strong {
  color: var(--ink);
  font-family: var(--font-latin);
  font-weight: 800;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(232, 63, 18, 0.22);
}

.button-primary:hover {
  background: var(--orange-deep);
  box-shadow: 0 16px 34px rgba(232, 63, 18, 0.29);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.domain-stage {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
}

.domain-card {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 92, 42, 0.35), transparent 35%),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  box-shadow: 0 35px 80px rgba(23, 19, 15, 0.28);
  transform: rotate(2deg);
}

.domain-card::before {
  position: absolute;
  z-index: -1;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  content: "";
}

.domain-card-top,
.domain-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-label,
.domain-meta {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.available-pill {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 6px 9px;
  color: var(--lime);
  background: rgba(216, 243, 90, 0.1);
  border: 1px solid rgba(216, 243, 90, 0.2);
  border-radius: 99px;
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 700;
}

.available-pill i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.domain-name {
  padding: 70px 0 56px;
  font-family: var(--font-latin);
  font-size: clamp(38px, 4.1vw, 56px);
  font-weight: 800;
  letter-spacing: -0.07em;
  text-align: center;
}

.domain-name span {
  color: var(--orange);
}

.domain-line {
  height: 1px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.copy-button {
  display: flex;
  width: 100%;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 11px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.copy-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.copy-button .material-symbols-rounded {
  font-size: 17px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 92, 42, 0.2);
  border-radius: 50%;
}

.orbit::before {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 6px rgba(255, 92, 42, 0.12);
}

.orbit-one {
  width: 590px;
  height: 390px;
  transform: rotate(-22deg);
}

.orbit-two {
  width: 460px;
  height: 530px;
  border-color: rgba(23, 19, 15, 0.1);
  transform: rotate(48deg);
}

.orbit-two::before {
  top: auto;
  right: 17%;
  bottom: 2px;
  left: auto;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(216, 243, 90, 0.18);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.glow-one {
  top: 140px;
  right: -190px;
  width: 500px;
  height: 500px;
  background: rgba(255, 92, 42, 0.12);
}

.glow-two {
  bottom: 40px;
  left: 33%;
  width: 280px;
  height: 280px;
  background: rgba(216, 243, 90, 0.15);
}

.scroll-note {
  position: relative;
  z-index: 3;
  display: flex;
  width: max-content;
  gap: 12px;
  align-items: center;
  margin-top: 68px;
  margin-left: max(24px, calc((100vw - min(1180px, calc(100vw - 48px))) / 2));
  color: rgba(23, 19, 15, 0.45);
  font-size: 11px;
}

.scroll-note i {
  display: block;
  width: 44px;
  height: 1px;
  background: rgba(23, 19, 15, 0.25);
}

.section {
  padding: 118px 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--orange);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading h2,
.possibility-copy h2,
.pricing-heading h2,
.closing h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.08;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(23, 19, 15, 0.08);
  border-radius: 24px;
}

.feature-wide {
  grid-column: 1 / -1;
  min-height: 430px;
  color: var(--white);
  background: var(--ink);
}

.feature-number {
  position: relative;
  z-index: 2;
  color: rgba(23, 19, 15, 0.38);
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 800;
}

.feature-wide .feature-number {
  color: rgba(255, 255, 255, 0.4);
}

.word-visual {
  position: absolute;
  inset: 22px 20px auto;
  color: rgba(255, 253, 248, 0.92);
  font-family: var(--font-latin);
  font-size: clamp(82px, 13vw, 178px);
  font-weight: 800;
  letter-spacing: -0.09em;
  white-space: nowrap;
}

.word-visual span:nth-child(2) {
  color: var(--orange);
}

.word-visual i {
  color: var(--lime);
  font-size: 0.25em;
  font-style: normal;
  letter-spacing: -0.04em;
}

.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 450px;
}

.feature-copy h3 {
  margin-bottom: 12px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.feature-copy p {
  margin-bottom: 0;
  color: rgba(23, 19, 15, 0.62);
  line-height: 1.75;
}

.feature-wide .feature-copy p {
  color: rgba(255, 255, 255, 0.62);
}

.icon-wrap {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  align-self: center;
  color: var(--orange);
  background: var(--paper);
  border-radius: 50%;
}

.icon-wrap .material-symbols-rounded {
  font-size: 46px;
  font-variation-settings: "opsz" 48;
}

.possibilities {
  color: var(--white);
  background: var(--ink);
}

.possibilities-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
}

.possibility-copy {
  position: sticky;
  top: 130px;
  height: max-content;
}

.idea-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.idea-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 110px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.idea-row span {
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-latin);
  font-size: 11px;
}

.idea-row strong {
  font-family: var(--font-latin);
  font-size: clamp(20px, 2.2vw, 29px);
  letter-spacing: -0.04em;
}

.idea-row i {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-style: normal;
}

.pricing {
  background: var(--cream);
}

.pricing-heading {
  max-width: 730px;
  margin: 0 auto 54px;
  text-align: center;
}

.pricing-heading h2 {
  margin-bottom: 18px;
}

.pricing-heading p {
  color: var(--ink-soft);
  font-size: 18px;
}

.pricing-grid {
  display: grid;
  max-width: 960px;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-inline: auto;
}

.price-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.price-card-featured {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 92, 42, 0.28), transparent 32%),
    var(--ink);
  border-color: var(--ink);
}

.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-label {
  font-size: 17px;
  font-weight: 700;
}

.recommend-badge,
.flexible-badge {
  padding: 6px 10px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
}

.recommend-badge {
  color: var(--lime);
  background: rgba(216, 243, 90, 0.1);
  border: 1px solid rgba(216, 243, 90, 0.2);
}

.flexible-badge {
  color: var(--orange-deep);
  background: rgba(255, 92, 42, 0.09);
}

.price {
  margin-top: 38px;
  font-family: var(--font-latin);
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.07em;
}

.price > span {
  margin-right: 5px;
  color: var(--orange);
  font-size: 0.42em;
  vertical-align: top;
}

.price-note {
  margin-bottom: 31px;
  color: rgba(23, 19, 15, 0.5);
  font-size: 13px;
}

.price-card-featured .price-note {
  color: rgba(255, 255, 255, 0.5);
}

.rental-options {
  display: grid;
  gap: 8px;
  margin: -7px 0 22px;
}

.rental-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid rgba(23, 19, 15, 0.08);
  border-radius: 14px;
}

.rental-option-highlight {
  background: rgba(255, 92, 42, 0.08);
  border-color: rgba(255, 92, 42, 0.2);
}

.rental-option > div,
.rental-option > p {
  display: flex;
  flex-direction: column;
}

.rental-option strong {
  font-size: 14px;
}

.rental-option > div span,
.rental-option > p span {
  color: rgba(23, 19, 15, 0.5);
  font-size: 10px;
}

.rental-option > p {
  align-items: flex-end;
  margin: 0;
}

.rental-option b {
  font-family: var(--font-latin);
  font-size: 15px;
  letter-spacing: -0.03em;
}

.price-card ul {
  display: grid;
  min-height: 150px;
  gap: 16px;
  margin: 0 0 28px;
  padding: 27px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card-featured ul {
  border-color: rgba(255, 255, 255, 0.14);
}

.price-card li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
}

.price-card li .material-symbols-rounded {
  flex: 0 0 18px;
  margin-top: 2px;
  color: var(--orange);
  font-size: 18px;
}

.price-card .button {
  width: 100%;
}

.button-light {
  color: var(--ink);
  background: var(--lime);
}

.button-light:hover {
  box-shadow: 0 12px 30px rgba(216, 243, 90, 0.18);
}

.button-outline {
  border-color: var(--ink);
}

.button-outline:hover {
  color: var(--white);
  background: var(--ink);
}

.terms-note {
  max-width: 850px;
  margin: 24px auto 0;
  color: rgba(23, 19, 15, 0.48);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.closing {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  text-align: center;
}

.closing-inner {
  position: relative;
  z-index: 2;
}

.closing h2 {
  max-width: 820px;
  margin: 0 auto 22px;
}

.closing p {
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 17px;
}

.closing-shape {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 92, 42, 0.2);
  border-radius: 44% 56% 67% 33% / 45% 44% 56% 55%;
}

.shape-left {
  bottom: -100px;
  left: -130px;
  background: rgba(255, 92, 42, 0.06);
  transform: rotate(22deg);
}

.shape-right {
  top: -120px;
  right: -90px;
  background: rgba(216, 243, 90, 0.16);
  border-color: rgba(216, 243, 90, 0.35);
  transform: rotate(-30deg);
}

.site-footer {
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.56);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  color: var(--white);
}

.footer-inner > p {
  margin-bottom: 0;
  font-size: 12px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  font-size: 11px;
}

.footer-meta a {
  color: var(--white);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 960px) {
  :root {
    --container: min(100% - 40px, 720px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-button .material-symbols-rounded {
    color: var(--ink);
    font-size: 24px;
  }

  .mobile-nav {
    position: fixed;
    inset: 84px 0 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding-bottom: 84px;
    background: var(--paper);
    font-size: 24px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 126px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .domain-stage {
    min-height: 450px;
  }

  .scroll-note {
    margin-top: 34px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .possibilities-inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .possibility-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 30px);
  }

  .header-inner {
    height: 72px;
  }

  .mobile-nav {
    inset-block-start: 72px;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 48px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(43px, 13vw, 60px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .domain-stage {
    min-height: 350px;
  }

  .domain-card {
    padding: 22px;
    border-radius: 22px;
    transform: none;
  }

  .domain-name {
    padding: 52px 0 42px;
    font-size: clamp(32px, 11vw, 47px);
  }

  .domain-meta {
    gap: 8px;
    font-size: 8px;
  }

  .orbit-one {
    width: 420px;
    height: 280px;
  }

  .orbit-two {
    width: 320px;
    height: 370px;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading h2,
  .possibility-copy h2,
  .pricing-heading h2,
  .closing h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading > p,
  .pricing-heading p {
    font-size: 16px;
  }

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

  .feature-wide {
    grid-column: auto;
    min-height: 390px;
  }

  .feature-card {
    min-height: 360px;
    padding: 26px;
  }

  .word-visual {
    top: 60px;
    inset-inline: 24px;
    font-size: clamp(50px, 14vw, 58px);
    transform: rotate(-4deg);
  }

  .possibilities-inner {
    gap: 46px;
  }

  .idea-row {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    padding: 20px 0;
  }

  .idea-row i {
    grid-column: 2;
  }

  .price-card {
    padding: 26px;
  }

  .price-card ul {
    min-height: auto;
  }

  .closing {
    padding: 100px 0;
  }

  .closing .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-meta {
    align-items: center;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
