/* Product page */
.product-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(58px, 8vw, 116px);
  padding-block: clamp(74px, 9vw, 118px);
}

.product-hero::after {
  position: absolute;
  right: 42%;
  bottom: 11%;
  width: 140px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--vermilion), transparent);
}

.product-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.product-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(56px, 6.8vw, 88px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.product-hero-lede {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.85;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.product-orbit {
  position: relative;
  justify-self: end;
  width: min(100%, 430px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(251, 248, 241, 0.96) 0 31%, transparent 32%),
    radial-gradient(circle at center, transparent 0 49%, rgba(169, 74, 58, 0.08) 50% 50.5%, transparent 51%),
    radial-gradient(circle at 34% 24%, rgba(169, 74, 58, 0.12), transparent 34%),
    rgba(232, 225, 212, 0.34);
  box-shadow: 0 30px 90px rgba(54, 47, 37, 0.1);
  isolation: isolate;
}

.product-orbit::before,
.product-orbit::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.product-orbit::before {
  inset: 14%;
  border-style: dashed;
}

.product-orbit::after {
  inset: 31%;
  border-color: rgba(169, 74, 58, 0.28);
}

.product-orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 198px;
  aspect-ratio: 1;
  place-content: center;
  place-items: center;
  border: 1px solid rgba(169, 74, 58, 0.22);
  border-radius: 50%;
  background: rgba(251, 248, 241, 0.92);
  box-shadow: 0 20px 50px rgba(54, 47, 37, 0.12);
  transform: translate(-50%, -50%);
}

.product-orbit-core img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.product-orbit-core strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.12em;
  line-height: 1;
  text-indent: 0.12em;
}

.product-orbit-core small {
  margin-top: 8px;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.product-orbit-label {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(251, 248, 241, 0.92);
  box-shadow: 0 8px 24px rgba(54, 47, 37, 0.08);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.product-orbit-label-copy { top: 8%; left: 18%; }
.product-orbit-label-world { top: 19%; right: -1%; }
.product-orbit-label-time { right: 1%; bottom: 18%; }
.product-orbit-label-branch { bottom: 6%; left: 25%; }
.product-orbit-label-adapt { top: 47%; left: -3%; }

.product-capability-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) repeat(2, minmax(0, 0.96fr));
  gap: 18px;
  margin-top: 48px;
}

.product-capability-card {
  position: relative;
  display: flex;
  min-height: 470px;
  overflow: hidden;
  flex-direction: column;
  padding: clamp(30px, 3.4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(251, 248, 241, 0.62);
}

.product-capability-card::after {
  position: absolute;
  right: -72px;
  bottom: -88px;
  width: 210px;
  height: 210px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.product-capability-card-primary {
  color: var(--paper-light);
  background: var(--ink);
}

.product-capability-card-primary::after {
  border-color: rgba(251, 248, 241, 0.14);
}

.product-capability-card-accent {
  background: rgba(234, 212, 202, 0.48);
}

.product-capability-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.product-capability-card-primary .product-capability-card-head {
  border-color: rgba(251, 248, 241, 0.18);
}

.product-capability-card-head span {
  color: var(--vermilion);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.product-capability-card-primary .product-capability-card-head span {
  color: #d67a68;
}

.product-capability-card-head p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-capability-card h3 {
  position: relative;
  z-index: 1;
  margin: clamp(46px, 5vw, 72px) 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 600;
  line-height: 1.35;
}

.product-capability-card > p {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.product-capability-card-primary > p {
  color: rgba(251, 248, 241, 0.7);
}

.product-capability-card ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 34px 0 0;
  list-style: none;
}

.product-capability-card li {
  padding: 6px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 11px;
}

.product-capability-card-primary li {
  border-color: rgba(251, 248, 241, 0.2);
  color: rgba(251, 248, 241, 0.84);
}

.product-capability-card-chat {
  min-height: 360px;
  grid-column: 1 / -1;
  background:
    linear-gradient(112deg, rgba(169, 74, 58, 0.12), transparent 44%),
    rgba(251, 248, 241, 0.72);
}

.product-capability-card-chat::after {
  right: -46px;
  bottom: -132px;
  width: 330px;
  height: 330px;
  box-shadow: 0 0 0 48px rgba(169, 74, 58, 0.025);
}

.product-chat-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: end;
  gap: clamp(34px, 6vw, 84px);
}

.product-chat-card-body h3 {
  max-width: 720px;
  margin-top: 32px;
}

.product-chat-eyebrow {
  margin: 34px 0 0;
  color: var(--vermilion-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-chat-card-body > div:first-child > p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.product-chat-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 24px 20px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.34);
  text-align: center;
}

.product-chat-route span {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
}

.product-chat-route b {
  color: var(--vermilion);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.product-context-panel {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(251, 248, 241, 0.62);
  box-shadow: var(--shadow);
}

.product-context-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5vw, 62px);
  color: var(--paper-light);
  background: var(--ink);
}

.product-context-copy::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(251, 248, 241, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 48px rgba(251, 248, 241, 0.025);
}

.product-context-number {
  margin: 0;
  color: #d67a68;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.product-context-copy h3 {
  position: relative;
  z-index: 1;
  margin: 72px 0 0;
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 54px);
  line-height: 1.3;
}

.product-context-copy > p:last-child {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  color: rgba(251, 248, 241, 0.7);
  font-size: 14px;
  line-height: 1.9;
}

.product-context-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-context-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 23px clamp(26px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
}

.product-context-list li:last-child {
  border-bottom: 0;
}

.product-context-list > li > span {
  color: var(--vermilion);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
}

.product-context-list strong {
  font-family: var(--serif);
  font-size: 18px;
}

.product-context-list p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.product-adaptation-section {
  overflow: hidden;
}

.product-adaptation-section .section-title {
  max-width: 940px;
}

.product-adaptation-section .section-intro {
  max-width: 820px;
}

.product-adaptation-converter {
  display: grid;
  grid-template-columns: minmax(210px, 0.82fr) minmax(380px, 1.36fr) minmax(210px, 0.82fr);
  align-items: stretch;
  margin-top: 52px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.product-adaptation-format {
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 42px clamp(20px, 3vw, 40px);
}

.product-adaptation-format span {
  color: var(--vermilion-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-adaptation-format strong {
  font-family: var(--serif);
  font-size: clamp(18px, 1.65vw, 23px);
  font-weight: 600;
  white-space: nowrap;
}

.product-adaptation-format small {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.7;
}

.product-conversion-lanes {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px clamp(22px, 3vw, 44px);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(169, 74, 58, 0.1), transparent 11rem),
    rgba(251, 248, 241, 0.52);
}

.product-conversion-lane {
  display: grid;
  grid-template-columns: auto minmax(30px, 1fr) auto;
  align-items: center;
  gap: 12px;
  color: var(--vermilion-dark);
}

.product-conversion-lane span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.product-conversion-lane i {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(169, 74, 58, 0.22), var(--vermilion));
}

.product-conversion-lane-reverse i {
  background: linear-gradient(90deg, var(--vermilion), rgba(169, 74, 58, 0.22));
}

.product-conversion-lane b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.product-conversion-arrow-mobile {
  display: none;
}

.product-conversion-core {
  justify-self: center;
  padding: 17px 30px 18px;
  border: 1px solid rgba(169, 74, 58, 0.28);
  border-radius: 999px;
  background: rgba(251, 248, 241, 0.9);
  box-shadow: 0 12px 28px rgba(54, 47, 37, 0.08);
  text-align: center;
}

.product-conversion-core small {
  display: block;
  color: var(--vermilion-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product-conversion-core strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.35;
}

.product-conversion-core p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.product-adaptation-foundation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.product-adaptation-foundation > strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}

.product-adaptation-foundation > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.product-adaptation-foundation span {
  padding: 6px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 11px;
}

.product-adaptation-note {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 16px;
  text-align: center;
}

.product-local-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 88px);
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-lg);
  color: var(--paper-light);
  background: var(--ink);
}

.product-local-panel::after {
  position: absolute;
  right: -10%;
  bottom: -52%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(251, 248, 241, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 56px rgba(251, 248, 241, 0.018), 0 0 0 112px rgba(251, 248, 241, 0.012);
}

.product-local-copy,
.product-local-benefits {
  position: relative;
  z-index: 1;
}

.product-local-copy .section-kicker {
  color: #d49a89;
}

.product-local-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 3.8vw, 52px);
  line-height: 1.28;
}

.product-local-title-line {
  display: block;
  white-space: nowrap;
}

.product-local-copy > p:not(.section-kicker) {
  margin: 30px 0 0;
  color: rgba(251, 248, 241, 0.68);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.9;
}

.product-local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
}

.product-local-links a {
  color: #e4b1a3;
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.product-local-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(251, 248, 241, 0.14);
}

.product-local-benefits li {
  display: grid;
  min-height: 174px;
  grid-template-columns: 32px minmax(0, 1fr);
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: var(--ink);
}

.product-local-benefits > li > span {
  color: #d49a89;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
}

.product-local-benefits strong {
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 17px;
}

.product-local-benefits p {
  margin: 9px 0 0;
  color: rgba(251, 248, 241, 0.64);
  font-size: 13px;
  line-height: 1.75;
}

.product-cta-section {
  padding-top: 0;
}

.product-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(36px, 7vw, 86px);
  padding: clamp(38px, 6vw, 70px);
  border: 1px solid rgba(169, 74, 58, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 16%, rgba(169, 74, 58, 0.15), transparent 17rem),
    rgba(251, 248, 241, 0.62);
  box-shadow: var(--shadow);
}

.product-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1.22;
}

.product-cta > div:first-child > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 17px;
}

.product-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 980px) {
  .product-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding-block: 82px 76px;
  }

  .product-hero::after {
    display: none;
  }

  .product-orbit {
    justify-self: center;
    width: min(100%, 400px);
  }

  .product-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-capability-card-primary {
    min-height: 370px;
    grid-column: 1 / -1;
  }

  .product-context-panel,
  .product-local-panel {
    grid-template-columns: 1fr;
  }

  .product-context-copy h3 {
    margin-top: 48px;
  }

  .product-local-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .product-hero {
    gap: 38px;
    padding-block: 60px;
  }

  .product-hero h1 {
    font-size: clamp(42px, 12.5vw, 62px);
  }

  .product-hero-lede {
    margin-top: 24px;
    font-size: 17px;
  }

  .product-hero-actions {
    margin-top: 28px;
  }

  .product-orbit {
    width: min(100%, 330px);
  }

  .product-orbit-core {
    width: 154px;
  }

  .product-orbit-core img {
    width: 78px;
    height: 78px;
  }

  .product-orbit-core strong {
    font-size: 18px;
  }

  .product-orbit-label {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .product-capability-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .product-capability-card,
  .product-capability-card-primary {
    min-height: 0;
    grid-column: auto;
    padding: 26px;
  }

  .product-capability-card h3 {
    margin-top: 34px;
    font-size: clamp(27px, 8.4vw, 36px);
  }

  .product-capability-card ul {
    margin-top: 30px;
    padding-top: 0;
  }

  .product-context-panel {
    margin-top: 32px;
  }

  .product-context-copy {
    padding: 28px;
  }

  .product-context-copy h3 {
    margin-top: 38px;
    font-size: clamp(34px, 10vw, 46px);
  }

  .product-context-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 20px;
  }

  .product-chat-card-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-adaptation-converter {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .product-adaptation-format {
    min-height: 0;
    justify-items: center;
    padding: 28px 20px;
    text-align: center;
  }

  .product-adaptation-format strong {
    font-size: 20px;
  }

  .product-conversion-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 28px 12px;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .product-conversion-core {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .product-conversion-lane {
    grid-row: 2;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    text-align: center;
  }

  .product-conversion-lane i,
  .product-conversion-arrow-desktop {
    display: none;
  }

  .product-conversion-arrow-mobile {
    display: block;
  }

  .product-adaptation-foundation {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .product-adaptation-foundation > div {
    justify-content: center;
  }

  .product-adaptation-note {
    margin-top: 24px;
    font-size: 15px;
  }

  .product-local-panel {
    gap: 32px;
    padding: 28px;
  }

  .product-local-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .product-local-copy > p:not(.section-kicker) {
    margin-top: 24px;
  }

  .product-local-benefits {
    grid-template-columns: 1fr;
  }

  .product-local-benefits li {
    min-height: 0;
    padding: 20px 0;
  }

  .product-cta {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 30px;
  }

  .product-cta h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .product-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .product-hero {
    padding-block: 48px 56px;
  }

  .product-hero h1 {
    font-size: clamp(37px, 12.2vw, 48px);
  }

  .product-hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  }

  .product-hero-actions .button {
    width: 100%;
    padding-inline: 12px;
  }

  .product-orbit {
    width: min(100%, 276px);
  }

  .product-orbit-core {
    width: 132px;
  }

  .product-orbit-core img {
    width: 64px;
    height: 64px;
  }

  .product-orbit-core strong {
    font-size: 16px;
  }

  .product-orbit-core small {
    font-size: 8px;
  }

  .product-orbit-label {
    min-height: 26px;
    padding-inline: 8px;
    font-size: 10px;
  }

  .product-orbit-label-copy { top: 6%; left: 15%; }
  .product-orbit-label-world { top: 17%; right: -2%; }
  .product-orbit-label-time { right: -2%; bottom: 17%; }
  .product-orbit-label-branch { bottom: 4%; left: 23%; }
  .product-orbit-label-adapt { top: 46%; left: -2%; }

  .product-capability-card {
    padding: 22px;
  }

  .product-context-list strong {
    font-size: 17px;
  }

  .product-local-panel {
    padding: 24px 22px;
  }

  .product-cta {
    padding: 26px 22px;
  }

  .product-cta-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-cta-actions .button {
    width: 100%;
    padding-inline: 12px;
  }

  .product-cta-actions .button-primary {
    grid-column: 1 / -1;
  }
}
