* {
  box-sizing: border-box;
  letter-spacing: 0;
}

:root {
  color-scheme: dark;
  --sk-bg-deep: #07110f;
  --sk-bg-ocean: #0a171b;
  --sk-bg-panel: #0d222b;
  --sk-bg-card: rgba(14, 39, 49, 0.84);
  --sk-cyan: #4db0bd;
  --sk-cyan-bright: #67e8f9;
  --sk-cyan-soft: rgba(77, 176, 189, 0.22);
  --sk-cyan-line: rgba(77, 176, 189, 0.68);
  --sk-text-main: #f4fafc;
  --sk-text-secondary: #a9bbc3;
  --sk-text-muted: #6f858d;
  --sk-warm: #fbbf77;
  --sk-warm-soft: rgba(251, 191, 119, 0.16);
  --sk-border: rgba(103, 232, 249, 0.24);
  --sk-border-strong: rgba(103, 232, 249, 0.52);
  --sk-glow-cyan: 0 0 28px rgba(77, 176, 189, 0.38);
  --sk-glow-soft: 0 0 48px rgba(103, 232, 249, 0.16);
  --sk-radius-sm: 10px;
  --sk-radius-md: 16px;
  --sk-radius-lg: 24px;
  --sk-radius-pill: 999px;
  --bg: var(--sk-bg-deep);
  --surface: rgba(13, 34, 43, 0.78);
  --surface-2: rgba(14, 39, 49, 0.72);
  --surface-3: rgba(21, 54, 66, 0.72);
  --line: var(--sk-border);
  --line-soft: rgba(103, 232, 249, 0.14);
  --text: var(--sk-text-main);
  --muted: var(--sk-text-secondary);
  --quiet: var(--sk-text-muted);
  --green: var(--sk-cyan-bright);
  --cyan: var(--sk-cyan);
  --amber: var(--sk-warm);
  --rose: #fb7185;
  --ink: #062126;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 360px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(77, 176, 189, 0.16), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(103, 232, 249, 0.1), transparent 28%),
    linear-gradient(180deg, var(--sk-bg-deep) 0%, var(--sk-bg-ocean) 54%, #050a0d 100%);
  color: var(--text);
  font-family:
    Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial,
    sans-serif;
}

button,
a,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p,
span,
strong,
em,
b,
small {
  overflow-wrap: anywhere;
}

.site-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 14px 0 26px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(8, 10, 9, 0.92);
  padding: 8px 0 12px;
  backdrop-filter: blur(14px);
}

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

.seekami-logo {
  display: inline-grid;
  overflow: hidden;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.seekami-logo-shark {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.brand-lockup strong {
  display: block;
  color: var(--text);
  font-size: 21px;
  font-weight: 950;
  line-height: 1;
}

.brand-lockup em {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.site-nav,
.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav {
  justify-content: center;
}

.site-nav a,
.ghost-button,
.primary-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 12px;
  font-weight: 950;
}

.site-nav a {
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 13px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--line);
  color: var(--text);
  outline: 0;
}

.site-nav a.is-active {
  border-color: rgba(52, 211, 153, 0.42);
  background: rgba(52, 211, 153, 0.08);
  color: var(--green);
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 950;
  list-style: none;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 220px;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d120f;
  padding: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.mobile-menu-panel a {
  display: flex;
  min-height: 38px;
  align-items: center;
  border-radius: 8px;
  color: var(--muted);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 900;
}

.mobile-menu-panel a.is-active {
  background: rgba(52, 211, 153, 0.08);
  color: var(--green);
}

.primary-button {
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--ink);
}

.ghost-button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
}

.primary-button:hover,
.primary-button:focus-visible,
.ghost-button:hover,
.ghost-button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.78fr);
  align-items: center;
  min-height: 520px;
  gap: 34px;
  border-bottom: 1px solid var(--line-soft);
  padding: 54px 0 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--text);
  font-size: 60px;
  font-weight: 980;
  line-height: 1.02;
}

.hero-lede {
  max-width: 730px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 860;
  line-height: 1.58;
}

.hero-support,
.section-heading p,
.service-card p,
.tool-card p,
.journey-row span,
.method-card span,
.role-card em,
.team-note,
.contact-section p,
.site-footer span,
.site-footer a,
.site-footer small {
  color: var(--muted);
  font-weight: 780;
}

.hero-support {
  max-width: 730px;
  margin: 13px 0 0;
  font-size: 15px;
  line-height: 1.68;
}

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-panel {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px;
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.panel-head img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.journey-list {
  display: grid;
  gap: 10px;
}

.journey-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-2);
  padding: 0 12px;
}

.journey-row b {
  color: var(--text);
  font-size: 15px;
  font-weight: 980;
}

.journey-row span {
  font-size: 14px;
  line-height: 1.36;
}

body[data-page-lang="en"] .journey-row {
  grid-template-columns: 112px minmax(0, 1fr);
}

.hero-slogan {
  margin: 0;
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 8px;
  background: rgba(52, 211, 153, 0.08);
  color: var(--green);
  padding: 13px;
  font-size: 18px;
  font-weight: 980;
  line-height: 1.35;
}

.service-section,
.tools-section,
.methodology-section,
.team-section,
.contact-section {
  border-bottom: 1px solid var(--line-soft);
  padding: 38px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 18px;
}

.section-heading h2,
.tool-card h2,
.contact-section h2 {
  margin: 0;
  color: var(--text);
  font-size: 32px;
  font-weight: 980;
  line-height: 1.16;
}

.section-heading p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.58;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.service-card,
.tool-card,
.method-card,
.role-card,
.contact-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 232px;
  padding: 15px;
}

.card-index {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.service-card:nth-child(2) .card-index {
  color: var(--cyan);
}

.service-card:nth-child(3) .card-index {
  color: var(--amber);
}

.service-card:nth-child(4) .card-index {
  color: var(--rose);
}

.service-card h3,
.method-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 980;
  line-height: 1.14;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.54;
}

.tool-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 250px;
  align-items: center;
  gap: 22px;
  padding: 18px;
}

.tool-visual {
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 8px;
  background: var(--surface-2);
}

.tool-visual img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.tool-label {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
}

.tool-card p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.58;
}

.pro-entry-card {
  display: grid;
  gap: 10px;
  align-content: center;
  min-height: 140px;
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 8px;
  background: rgba(52, 211, 153, 0.07);
  padding: 14px;
}

.pro-entry-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.pro-entry-card strong {
  color: var(--text);
  font-size: 19px;
  font-weight: 980;
  line-height: 1.22;
}

.pro-entry-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.feature-grid span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--muted);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 850;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.method-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 260px;
  padding: 12px;
}

.poster-placeholder {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(52, 211, 153, 0.15), transparent 45%),
    linear-gradient(315deg, rgba(96, 165, 250, 0.16), transparent 42%),
    var(--surface-2);
}

.method-card h3 {
  font-size: 17px;
}

.method-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 8px;
  background: rgba(52, 211, 153, 0.07);
  color: var(--green);
  padding: 0 9px;
  font-size: 12px;
  font-weight: 950;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.role-card {
  display: grid;
  justify-items: start;
  gap: 8px;
  min-height: 146px;
  padding: 14px;
}

.role-avatar {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(96, 165, 250, 0.32);
  border-radius: 8px;
  background: rgba(96, 165, 250, 0.1);
  color: var(--text);
  font-size: 15px;
  font-weight: 980;
}

.role-card strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.24;
}

.role-card em {
  font-size: 13px;
  font-style: normal;
}

.team-note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.contact-section .eyebrow {
  margin-bottom: 10px;
}

.contact-section p {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.58;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.pricing-hero,
.pricing-section,
.payment-section {
  border-bottom: 1px solid var(--line-soft);
  padding: 38px 0;
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: center;
  gap: 22px;
}

.pricing-summary {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px;
}

.pricing-summary strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 980;
}

.pricing-summary span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--muted);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 850;
}

.plan-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.plan-card,
.checkout-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.plan-card {
  display: grid;
  min-height: 230px;
  align-content: space-between;
  gap: 12px;
  padding: 14px;
  cursor: pointer;
  user-select: none;
}

.plan-card.is-selected,
.plan-card.is-featured {
  border-color: rgba(52, 211, 153, 0.68);
}

.plan-card:hover,
.plan-card:focus-visible {
  border-color: var(--green);
  outline: 0;
  transform: translateY(-1px);
}

.plan-card.is-selected {
  background: #112019;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.plan-badge,
.save-chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 8px;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 950;
}

.plan-badge {
  background: #1f2d26;
  color: var(--text);
}

.save-chip {
  background: rgba(245, 158, 11, 0.14);
  color: var(--amber);
}

.plan-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  font-weight: 980;
}

.price strong {
  color: var(--text);
  font-size: 35px;
  font-weight: 980;
}

.price span,
.plan-card p,
.checkout-card span,
.checkout-card em {
  color: var(--muted);
  font-weight: 780;
}

.plan-card p {
  min-height: 40px;
  margin: 0;
  font-size: 14px;
  line-height: 1.42;
}

.plan-card button,
.primary-pay,
.payment-address-copy button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 12px;
  font-weight: 950;
}

.plan-card button,
.primary-pay {
  width: 100%;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--ink);
}

.checkout-card {
  display: grid;
  max-width: 760px;
  gap: 10px;
  padding: 14px;
}

.checkout-summary {
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 9px;
}

.checkout-summary > span {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
}

.checkout-summary strong {
  display: block;
  color: var(--text);
  font-size: 23px;
  font-weight: 980;
}

.checkout-summary p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 6px 0 0;
}

.checkout-summary b {
  color: var(--text);
  font-size: 29px;
}

.checkout-summary em {
  font-size: 13px;
  font-style: normal;
}

.trial-line {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 8px;
  background: rgba(52, 211, 153, 0.08);
  padding: 10px;
}

.trial-line strong {
  color: var(--green);
}

.payment-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 8px;
}

input,
select {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 0 11px;
  outline: 0;
}

input:focus,
select:focus {
  border-color: var(--green);
}

input::placeholder {
  color: #6f776e;
}

select option {
  background: #101512;
}

.crypto-fields,
.manual-submit-fields {
  display: grid;
  gap: 8px;
}

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

.crypto-fields.is-hidden {
  display: none;
}

.payment-address-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 8px;
  background: rgba(52, 211, 153, 0.07);
  padding: 10px;
}

.payment-address-card.is-unavailable {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.payment-qr {
  overflow: hidden;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
}

.payment-qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-address-card.is-unavailable .payment-qr img {
  display: none;
}

.payment-qr span {
  padding: 10px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.3;
  text-align: center;
}

.payment-address-copy {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.payment-address-copy span {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.payment-address-copy code {
  overflow-wrap: anywhere;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  line-height: 1.35;
}

.payment-address-copy button {
  width: 100%;
  border: 1px solid rgba(52, 211, 153, 0.46);
  background: rgba(52, 211, 153, 0.1);
  color: var(--green);
}

.payment-address-copy button:disabled,
.primary-pay:disabled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--quiet);
  cursor: not-allowed;
}

.page-hero,
.module-section,
.source-note,
.cta-panel {
  border-bottom: 1px solid var(--line-soft);
  padding: 38px 0;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  align-items: center;
  gap: 22px;
}

.page-hero h1 {
  max-width: 760px;
  font-size: 48px;
}

.page-hero p:not(.eyebrow),
.module-section > .section-heading p {
  max-width: 760px;
}

.hero-visual-card,
.quick-card,
.link-card,
.article-card,
.poster-card,
.contact-card,
.matrix-card,
.timeline-step,
.avatar-card,
.gtm-channel-card,
.priority-list article,
.source-note,
.search-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.hero-visual-card {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.hero-visual-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.route-line,
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.route-line span,
.process-flow span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--muted);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 900;
}

.entry-grid,
.card-grid,
.article-grid,
.poster-grid,
.avatar-grid,
.gtm-channel-grid,
.priority-list,
.contact-grid-large {
  display: grid;
  gap: 10px;
}

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

.poster-grid,
.article-grid,
.gtm-channel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.contact-grid-large {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.quick-card,
.link-card,
.article-card,
.poster-card,
.contact-card,
.matrix-card,
.timeline-step,
.avatar-card,
.gtm-channel-card,
.priority-list article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
}

.link-card {
  min-height: 170px;
}

.link-card:hover,
.link-card:focus-visible,
.article-card:hover,
.article-card:focus-visible,
.gtm-channel-card:hover,
.gtm-channel-card:focus-visible {
  border-color: rgba(52, 211, 153, 0.55);
  outline: 0;
  transform: translateY(-1px);
}

.icon-badge,
.avatar-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(96, 165, 250, 0.32);
  border-radius: 8px;
  background: rgba(96, 165, 250, 0.1);
  color: var(--text);
  font-size: 14px;
  font-weight: 980;
}

.link-card h3,
.article-card h3,
.poster-card h3,
.avatar-card h3,
.gtm-channel-card h3,
.contact-card h3,
.matrix-card h3,
.timeline-step h3 {
  margin: 0;
  color: var(--text);
  font-size: 19px;
  font-weight: 980;
  line-height: 1.18;
}

.link-card p,
.article-card p,
.poster-card p,
.avatar-card p,
.gtm-channel-card p,
.source-note p,
.contact-card p,
.matrix-card p,
.timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.48;
}

.tag-row,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span,
.filter-row span,
.article-badge,
.gtm-channel-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--muted);
  padding: 0 9px;
  font-size: 12px;
  font-weight: 900;
}

.filter-row span:first-child,
.article-badge,
.gtm-channel-card span,
.link-card .card-index {
  border-color: rgba(52, 211, 153, 0.28);
  background: rgba(52, 211, 153, 0.07);
  color: var(--green);
}

.gtm-channel-card {
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.gtm-channel-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px auto;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(103, 232, 249, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.16), transparent 68%);
  opacity: 0.62;
}

.gtm-channel-card small,
.priority-list span {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 840;
  line-height: 1.45;
}

.priority-list article {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  align-items: center;
}

.priority-list strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 980;
  line-height: 1.28;
}

.source-note {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.source-note h2 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 980;
}

.poster-art {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(52, 211, 153, 0.15), transparent 45%),
    linear-gradient(315deg, rgba(96, 165, 250, 0.16), transparent 42%),
    var(--surface-2);
}

.search-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
  padding: 14px;
}

.search-box {
  display: flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--quiet);
  padding: 0 12px;
  font-size: 14px;
  font-weight: 850;
}

.article-card time {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 850;
}

.tool-mockup {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 14px;
}

.mockup-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--surface-2);
  padding: 10px;
}

.mockup-row b {
  color: var(--text);
}

.mockup-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.cta-panel h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.16;
}

.cta-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 780;
}

.home-ai {
  --bg-deep: #06111f;
  --bg-ocean: #0b1f33;
  --card-glass: rgba(255, 255, 255, 0.08);
  --line-cyan: rgba(125, 211, 252, 0.24);
  --text-main: #f8fbff;
  --text-soft: rgba(226, 242, 255, 0.74);
  --accent-cyan: #67e8f9;
  --accent-blue: #60a5fa;
  --accent-warm: #fbbf24;
  --glow-cyan: 0 0 40px rgba(103, 232, 249, 0.28);
  background:
    linear-gradient(90deg, rgba(103, 232, 249, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(103, 232, 249, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(103, 232, 249, 0.15), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(251, 191, 36, 0.08), transparent 26%),
    linear-gradient(150deg, var(--bg-deep), #071415 48%, #04090d);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}

.home-ai .site-header {
  border-color: rgba(125, 211, 252, 0.18);
  background: rgba(4, 12, 18, 0.74);
}

.ai-home-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.72fr);
  align-items: center;
  min-height: calc(100vh - 78px);
  gap: 42px;
  border-bottom: 1px solid rgba(125, 211, 252, 0.18);
  padding: 64px 0 56px;
}

.signal-ocean {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.signal-lines {
  position: absolute;
  inset: 2% -4% auto -4%;
  width: 108%;
  height: 86%;
  opacity: 0.74;
}

.signal-lines path {
  fill: none;
  stroke: rgba(103, 232, 249, 0.3);
  stroke-dasharray: 8 16;
  stroke-linecap: round;
  stroke-width: 1.4;
  animation: signal-drift 12s linear infinite;
}

.signal-lines path:nth-child(2) {
  animation-duration: 15s;
  stroke: rgba(96, 165, 250, 0.28);
}

.signal-lines path:nth-child(3) {
  animation-duration: 18s;
  stroke: rgba(251, 191, 36, 0.2);
}

.signal-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent-cyan);
  box-shadow: 0 0 22px rgba(103, 232, 249, 0.72);
  animation: node-float 7s ease-in-out infinite;
}

.node-a { left: 18%; top: 28%; }
.node-b { left: 41%; top: 58%; animation-delay: -2s; }
.node-c { right: 22%; top: 24%; animation-delay: -4s; }
.node-d { right: 11%; bottom: 28%; animation-delay: -1s; }

.radar-ring {
  position: absolute;
  display: block;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(103, 232, 249, 0.22);
  border-top-color: rgba(103, 232, 249, 0.72);
  border-radius: 999px;
  animation: radar-scan 8s linear infinite;
}

.ring-a { right: 22%; top: 17%; }
.ring-b { left: 10%; bottom: 12%; width: 130px; height: 130px; animation-duration: 11s; }

.ai-hero-copy {
  position: relative;
  max-width: 760px;
}

.ai-hero-copy h1 {
  max-width: 820px;
  color: var(--text-main);
  font-size: 66px;
  line-height: 0.98;
  text-wrap: balance;
}

.ai-shortline {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 18px 0 0;
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.09);
  color: var(--accent-warm);
  padding: 0 11px;
  font-size: 14px;
  font-weight: 950;
}

.growth-cockpit {
  position: relative;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(6, 17, 31, 0.72);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    var(--glow-cyan);
  padding: 18px;
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.growth-cockpit:hover,
.growth-cockpit:focus-within {
  border-color: rgba(103, 232, 249, 0.64);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 0 56px rgba(103, 232, 249, 0.32);
  transform: translateY(-2px);
}

.cockpit-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.cockpit-orb {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.42);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.cockpit-orb img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.cockpit-head strong {
  display: block;
  color: var(--text-main);
  font-size: 21px;
  font-weight: 980;
}

.cockpit-head em {
  display: block;
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.cockpit-grid {
  display: grid;
  gap: 10px;
}

.cockpit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  padding: 10px;
}

.cockpit-row span {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 860;
}

.cockpit-row b {
  color: var(--text-main);
  font-size: 13px;
  font-weight: 980;
}

.cockpit-row i {
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
  height: 6px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.12);
}

.cockpit-row i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-warm));
  content: "";
  animation: meter-glow 3.8s ease-in-out infinite;
}

.cockpit-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.cockpit-flow span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 8px;
  background: rgba(103, 232, 249, 0.075);
  color: var(--accent-cyan);
  padding: 0 9px;
  font-size: 12px;
  font-weight: 950;
}

.belief-section,
.numbers-section,
.explore-section,
.final-ai-cta {
  border-bottom: 1px solid rgba(125, 211, 252, 0.18);
  padding: 58px 0;
}

.belief-section {
  max-width: 910px;
}

.belief-section h2,
.explore-section h2,
.final-ai-cta h2 {
  margin: 0;
  color: var(--text-main);
  font-size: 42px;
  font-weight: 980;
  line-height: 1.1;
  text-wrap: balance;
}

.belief-section p:not(.eyebrow),
.final-ai-cta p {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  font-weight: 780;
  line-height: 1.62;
}

.numbers-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.numbers-section article,
.explore-card,
.shark-bubble {
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(7, 17, 31, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.numbers-section article {
  display: grid;
  min-height: 168px;
  align-content: start;
  gap: 8px;
  padding: 16px;
}

.numbers-section strong {
  color: var(--accent-cyan);
  font-size: 34px;
  font-weight: 980;
  line-height: 1;
}

.numbers-section span {
  color: var(--text-main);
  font-size: 16px;
  font-weight: 950;
}

.numbers-section p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.42;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.explore-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 220px;
  align-content: start;
  gap: 12px;
  padding: 16px;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.explore-card::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--accent-cyan);
  content: "→";
  font-size: 22px;
  font-weight: 950;
  transform: translateX(-4px);
  transition: transform 180ms ease;
}

.explore-card:hover,
.explore-card:focus-visible {
  border-color: rgba(103, 232, 249, 0.6);
  box-shadow: var(--glow-cyan);
  outline: 0;
  transform: translateY(-2px);
}

.explore-card:hover::after,
.explore-card:focus-visible::after {
  transform: translateX(0);
}

.explore-card span {
  width: fit-content;
  border: 1px solid rgba(103, 232, 249, 0.3);
  border-radius: 8px;
  background: rgba(103, 232, 249, 0.08);
  color: var(--accent-cyan);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 950;
}

.explore-card h3 {
  margin: 0;
  color: var(--text-main);
  font-size: 22px;
  font-weight: 980;
  line-height: 1.16;
}

.explore-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.5;
}

.final-ai-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  align-items: center;
  gap: 22px;
}

.shark-bubble {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.shark-bubble img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.shark-bubble strong {
  color: var(--text-main);
  font-size: 20px;
  font-weight: 980;
  line-height: 1.28;
}

.shark-route {
  position: relative;
  overflow: hidden;
}

.shark-route::after {
  margin-left: 7px;
  content: "→";
  transition: transform 180ms ease;
}

.shark-route:hover::after,
.shark-route:focus-visible::after {
  transform: translateX(3px);
}

@keyframes signal-drift {
  to { stroke-dashoffset: -160; }
}

@keyframes node-float {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.58; }
  50% { transform: translate3d(8px, -12px, 0); opacity: 1; }
}

@keyframes radar-scan {
  to { transform: rotate(360deg); }
}

@keyframes meter-glow {
  0%, 100% { filter: brightness(0.92); }
  50% { filter: brightness(1.28); }
}

@media (max-width: 1120px) {
  .ai-home-hero,
  .final-ai-cta {
    grid-template-columns: 1fr;
  }

  .ai-home-hero {
    min-height: 0;
  }

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

@media (max-width: 720px) {
  .ai-hero-copy h1 {
    font-size: 42px;
  }

  .belief-section h2,
  .explore-section h2,
  .final-ai-cta h2 {
    font-size: 30px;
  }

  .numbers-section,
  .explore-grid {
    grid-template-columns: 1fr;
  }

  .growth-cockpit,
  .shark-bubble {
    border-radius: 10px;
  }

  .signal-lines,
  .radar-ring {
    opacity: 0.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signal-lines path,
  .signal-node,
  .radar-ring,
  .cockpit-row i::before,
  .navigator-orb::after,
  .navigator-entry:hover::before,
  .navigator-entry:focus-visible::before,
  .navigator-entry:hover::after,
  .navigator-entry:focus-visible::after {
    animation: none !important;
  }

  .growth-cockpit,
  .explore-card,
  .primary-button,
  .ghost-button {
    transition: none;
  }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 22px 0 0;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 950;
}

.site-footer span {
  margin-top: 4px;
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer a,
.site-footer small {
  font-size: 13px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-grid,
  .method-grid,
  .role-grid,
  .entry-grid,
  .card-grid,
  .poster-grid,
  .article-grid,
  .avatar-grid,
  .gtm-channel-grid,
  .priority-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-card,
  .pricing-hero,
  .page-hero,
  .contact-grid-large {
    grid-template-columns: 1fr;
  }

  .pro-entry-card {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(720px, calc(100vw - 22px));
  }

  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  h1 {
    font-size: 44px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .service-grid,
  .method-grid,
  .role-grid,
  .entry-grid,
  .card-grid,
  .poster-grid,
  .article-grid,
  .avatar-grid,
  .gtm-channel-grid,
  .priority-list,
  .tool-card,
  .plan-stack,
  .pricing-hero,
  .page-hero,
  .contact-grid-large,
  .cta-panel,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .tool-visual {
    width: 132px;
    height: 132px;
  }

  .contact-actions,
  .site-footer nav {
    justify-content: flex-start;
  }

  .pricing-summary,
  .checkout-card {
    max-width: none;
  }

  .priority-list article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(430px, calc(100vw - 18px));
  }

  .brand-lockup strong {
    font-size: 18px;
  }

  h1 {
    font-size: 36px;
  }

  .section-heading h2,
  .tool-card h2,
  .contact-section h2,
  .cta-panel h2 {
    font-size: 27px;
  }

  .journey-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 5px;
    padding: 10px;
  }

  .primary-button,
  .ghost-button,
  .primary-pay {
    width: 100%;
  }

  .payment-controls,
  .crypto-fields,
  .payment-address-card,
  .process-flow,
  .route-line {
    grid-template-columns: 1fr;
  }
}

/* Seekami Deep Signal Ocean system layer */
.site-header {
  border-bottom: 1px solid var(--sk-border);
  background: rgba(7, 17, 15, 0.76);
  backdrop-filter: blur(18px);
}

.site-nav a,
.ghost-button,
.primary-button,
.primary-pay,
.mobile-menu summary {
  border-radius: var(--sk-radius-sm);
}

.site-nav a.is-active,
.site-nav a.active {
  border-color: var(--sk-border-strong);
  background: var(--sk-cyan-soft);
  color: var(--sk-text-main);
  box-shadow: var(--sk-glow-soft);
}

.primary-button,
.primary-pay,
.plan-card button {
  border: 1px solid var(--sk-cyan-bright);
  background: var(--sk-cyan-bright);
  color: var(--sk-bg-deep);
  box-shadow: 0 12px 34px rgba(103, 232, 249, 0.18);
}

.ghost-button,
.mobile-menu summary,
.mobile-menu-panel,
.payment-controls select,
.manual-submit-fields input,
.checkout-card input,
.checkout-card select {
  border: 1px solid var(--sk-border);
  background: rgba(7, 17, 15, 0.62);
  color: var(--sk-text-main);
}

.ghost-button:hover,
.primary-button:hover,
.primary-pay:hover,
.plan-card button:hover {
  border-color: var(--sk-border-strong);
  box-shadow: var(--sk-glow-soft);
  transform: translateY(-1px);
}

.seekami-logo,
.hero-visual-card,
.hero-panel,
.contact-section,
.cta-panel,
.sk-card,
.service-card,
.tool-card,
.playbook-card,
.insight-card,
.team-card,
.request-card,
.method-card,
.role-card,
.link-card,
.quick-card,
.pro-entry-card,
.pricing-summary,
.pricing-hero,
.pricing-section,
.plan-card,
.checkout-card,
.tool-mockup,
.payment-address-card,
.journey-row,
.mockup-row,
.contact-form,
.contact-note,
.process-flow,
.poster-card,
.article-card,
.gtm-channel-card,
.priority-list article,
.source-note {
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius-lg);
  background:
    linear-gradient(180deg, rgba(21, 54, 66, 0.82), rgba(8, 22, 28, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.service-card:hover,
.tool-card:hover,
.playbook-card:hover,
.insight-card:hover,
.team-card:hover,
.request-card:hover,
.method-card:hover,
.role-card:hover,
.link-card:hover,
.quick-card:hover,
.plan-card:hover,
.poster-card:hover,
.article-card:hover,
.gtm-channel-card:hover,
.priority-list article:hover {
  border-color: var(--sk-border-strong);
  box-shadow:
    var(--sk-glow-soft),
    0 22px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.hero-section,
.page-hero,
.pricing-hero {
  border-bottom-color: rgba(103, 232, 249, 0.14);
}

.hero-panel,
.hero-visual-card,
.tool-card,
.pricing-hero,
.checkout-card {
  position: relative;
  overflow: hidden;
}

.hero-panel::before,
.hero-visual-card::before,
.tool-card::before,
.pricing-hero::before,
.checkout-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(77, 176, 189, 0.2), transparent 36%),
    linear-gradient(115deg, transparent 42%, rgba(103, 232, 249, 0.08), transparent 58%);
  content: "";
  pointer-events: none;
}

.hero-panel > *,
.hero-visual-card > *,
.tool-card > *,
.pricing-hero > *,
.checkout-card > * {
  position: relative;
}

.eyebrow {
  color: var(--sk-cyan-bright);
}

.eyebrow span,
.card-index,
.avatar-mark,
.icon-badge,
.plan-badge,
.save-chip,
.route-line span,
.feature-grid span {
  border-color: var(--sk-cyan-line);
  background: rgba(77, 176, 189, 0.12);
  color: var(--sk-cyan-bright);
}

.card-index,
.avatar-mark,
.icon-badge,
.plan-badge,
.save-chip {
  box-shadow: 0 0 22px rgba(103, 232, 249, 0.12);
}

.pro-entry-card {
  border-color: rgba(251, 191, 119, 0.34);
  background:
    radial-gradient(circle at 12% 8%, rgba(251, 191, 119, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(21, 54, 66, 0.82), rgba(8, 22, 28, 0.9));
}

.pro-entry-card > span,
.hero-support,
.pricing-summary span,
.checkout-summary span,
.trial-line span {
  color: var(--sk-text-secondary);
}

.price strong,
.checkout-summary b,
.tool-label,
.hero-slogan {
  color: var(--sk-warm);
}

.payment-qr,
.payment-address-copy,
.trial-line,
.checkout-summary,
.plan-top {
  border-color: rgba(103, 232, 249, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.payment-address-copy code,
.manual-submit-fields input:focus,
.checkout-card input:focus,
.checkout-card select:focus {
  border-color: var(--sk-border-strong);
  box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.12);
  outline: 0;
}

.site-footer {
  border-top: 1px solid rgba(103, 232, 249, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .ghost-button:hover,
  .primary-button:hover,
  .primary-pay:hover,
  .service-card:hover,
  .tool-card:hover,
  .link-card:hover,
  .quick-card:hover,
  .plan-card:hover {
    transform: none;
  }
}

/* Install CTA — scout pages */
.install-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
}

.install-hint {
  font-size: 12px;
  color: var(--sk-text-muted, #8aaab8);
}

.install-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

/* ══════════════════════════════════════════════
   Premium Layer — global visual elevation
   ══════════════════════════════════════════════ */

/* ── Richer background depth ── */
body {
  background:
    radial-gradient(ellipse 55% 38% at 12% 8%, rgba(103, 232, 249, 0.13) 0%, transparent 70%),
    radial-gradient(ellipse 42% 32% at 88% 14%, rgba(52, 211, 153, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(6, 33, 66, 0.5) 0%, transparent 70%),
    linear-gradient(170deg, #050e14 0%, #071115 42%, #04090d 100%);
}

/* ── Noise texture overlay ── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── Cards: rounder, more glass ── */
.hero-visual-card,
.quick-card,
.link-card,
.article-card,
.poster-card,
.contact-card,
.matrix-card,
.timeline-step,
.avatar-card,
.gtm-channel-card,
.priority-list article {
  border-radius: 14px;
  border-color: rgba(103, 232, 249, 0.13);
  background: linear-gradient(145deg, rgba(14, 42, 54, 0.82), rgba(8, 24, 32, 0.72));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}

/* ── Contact cards: hover glow ── */
.contact-card {
  padding: 18px;
  gap: 12px;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(103, 232, 249, 0.38);
  box-shadow:
    0 0 0 1px rgba(103, 232, 249, 0.1) inset,
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(103, 232, 249, 0.1);
  transform: translateY(-2px);
  outline: 0;
}

.contact-card h3 {
  font-size: 16px;
  letter-spacing: -0.02em;
}

/* ── icon-badge: glow ── */
.icon-badge {
  border-radius: 10px;
  border-color: rgba(103, 232, 249, 0.28);
  background: rgba(103, 232, 249, 0.08);
  box-shadow: 0 0 14px rgba(103, 232, 249, 0.1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* ── primary-button: gradient ── */
.primary-button {
  background: linear-gradient(135deg, #34d9b0 0%, #22bfa0 60%, #0da88c 100%);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(52, 217, 176, 0.28), 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: -0.01em;
  font-size: 14px;
  padding: 0 18px;
  color: #03140f;
  border-radius: 10px;
  transition: box-shadow 0.2s, transform 0.15s, opacity 0.15s;
}

.primary-button:hover,
.primary-button:focus-visible {
  box-shadow: 0 0 32px rgba(52, 217, 176, 0.42), 0 4px 16px rgba(0,0,0,0.4);
  transform: translateY(-2px);
  opacity: 1;
}

/* ── ghost-button: glass ── */
.ghost-button {
  background: rgba(255, 255, 255, 0.042);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
  border-radius: 10px;
  color: rgba(200, 225, 232, 0.85);
  letter-spacing: -0.01em;
  font-size: 14px;
  padding: 0 18px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s, color 0.15s;
}

.ghost-button:hover,
.ghost-button:focus-visible {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(103, 232, 249, 0.3);
  color: #f0fafc;
  transform: translateY(-2px);
}

/* ── page-hero h1: gradient text ── */
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  background: linear-gradient(135deg, #f0fafc 30%, rgba(103, 232, 249, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── eyebrow: refined ── */
.eyebrow {
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* ── section-heading h2: tighter tracking ── */
.section-heading h2 {
  letter-spacing: -0.03em;
}

/* ── process-flow: more distinct ── */
.process-flow span {
  position: relative;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(14, 42, 54, 0.9), rgba(8, 24, 32, 0.8));
  border-color: rgba(103, 232, 249, 0.18);
  color: rgba(200, 230, 240, 0.75);
  font-size: 12px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── cta-panel: premium card ── */
.cta-panel {
  border-radius: 18px;
  border: 1px solid rgba(103, 232, 249, 0.16) !important;
  background: linear-gradient(135deg, rgba(10, 30, 40, 0.88), rgba(4, 14, 20, 0.82));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 32px 28px !important;
  box-shadow:
    0 0 0 1px rgba(103, 232, 249, 0.06) inset,
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(103, 232, 249, 0.06);
  margin-top: 8px;
  margin-bottom: 8px;
}

.cta-panel h2 {
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #f0fafc 40%, rgba(103, 232, 249, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── contact-actions: better gap ── */
.contact-actions {
  gap: 10px;
}

/* ── hero-visual-card: glow ── */
.hero-visual-card {
  border-color: rgba(103, 232, 249, 0.15);
  box-shadow: 0 0 40px rgba(103, 232, 249, 0.06);
  padding: 18px;
  border-radius: 16px;
}

/* ── site-header: frosted glass when scrolled ── */
.site-header {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
