:root {
  --bg: #07111f;
  --bg-soft: #0c1a2d;
  --panel: rgba(255,255,255,.07);
  --panel-strong: rgba(255,255,255,.11);
  --text: #f7f9fc;
  --muted: #abb8c9;
  --line: rgba(255,255,255,.13);
  --primary: #6ee7ff;
  --primary-strong: #19bfdc;
  --success: #70efb1;
  --warning: #ffd778;
  --shadow: 0 24px 80px rgba(0,0,0,.28);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(38,199,229,.17), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(112,239,177,.11), transparent 25rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,17,31,.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #041019;
  background: linear-gradient(135deg, var(--primary), var(--success));
  box-shadow: 0 10px 30px rgba(38,199,229,.24);
  font-size: 14px;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover {
  color: var(--text);
}

.language-select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 12px;
  color: var(--text);
  background: var(--panel);
  font: inherit;
  cursor: pointer;
}

.language-select option {
  color: #111827;
}

.hero {
  padding: 90px 0 58px;
}

.status-row,
.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--panel);
  font-size: 13px;
  font-weight: 700;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 18px var(--success);
}

.status.beta::before {
  background: var(--warning);
  box-shadow: 0 0 18px var(--warning);
}

.hero h1 {
  max-width: 900px;
  margin: 30px 0 22px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: .99;
  letter-spacing: -.065em;
}

.hero-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

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

.button-primary {
  color: #06121d;
  background: linear-gradient(135deg, var(--primary), var(--success));
  box-shadow: 0 15px 40px rgba(38,199,229,.2);
}

.button-secondary {
  border-color: var(--line);
  background: var(--panel);
}

.trial-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.trust-row {
  margin-top: 58px;
}

.trust-card {
  flex: 1 1 250px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.trust-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
}

.trust-card span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 82px 0;
}

.section-alt {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section h2 {
  max-width: 800px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.section-intro {
  max-width: 720px;
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 13px;
  color: #06121d;
  background: linear-gradient(135deg, var(--primary), var(--success));
  font-weight: 900;
}

.card h3 {
  margin: 0 0 9px;
  font-size: 21px;
  letter-spacing: -.025em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

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

.price-card {
  position: relative;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.price-card.featured {
  border-color: rgba(110,231,255,.55);
  background: linear-gradient(180deg, rgba(110,231,255,.13), rgba(255,255,255,.06));
  transform: translateY(-8px);
}

.plan-name {
  color: var(--muted);
  font-weight: 750;
}

.price {
  margin: 16px 0 2px;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.plan-detail {
  min-height: 48px;
  color: var(--muted);
}

.price-card .button {
  width: 100%;
  margin-top: 24px;
}

.payment-note {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px dashed var(--line);
  border-radius: 15px;
  color: var(--muted);
  font-size: 14px;
}

.account-box {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
  align-items: stretch;
}

.account-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(110,231,255,.12), rgba(112,239,177,.06)),
    var(--panel);
}

.feature-list {
  display: grid;
  gap: 13px;
  margin-top: 26px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.feature-item::before {
  content: "✓";
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #06121d;
  background: var(--success);
  font-size: 13px;
  font-weight: 900;
}

.account-preview {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #091727;
}

.balance-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--panel);
}

.balance-label {
  color: var(--muted);
  font-size: 13px;
}

.balance-value {
  margin-top: 4px;
  font-size: 29px;
  font-weight: 900;
}

.account-status {
  color: var(--warning);
  font-size: 14px;
  font-weight: 750;
}

.final-cta {
  text-align: center;
}

.final-cta h2,
.final-cta .section-intro {
  margin-inline: auto;
}

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

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.mobile-menu {
  display: none;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .language-select {
    margin-left: auto;
  }

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

  .grid-3,
  .account-box {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: 46px;
  }

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

  .header-inner {
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .language-select {
    max-width: 150px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* ==================================================
   GS TalkFree v0.1.1 — Mobile Conversion Polish
   ================================================== */

.button-disabled {
  color: var(--muted);
  background: rgba(255,255,255,.06);
  border-color: var(--line);
  cursor: not-allowed;
  box-shadow: none;
  user-select: none;
}

.button-disabled:hover {
  transform: none;
}

.preview-label {
  color: var(--primary);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .header {
    position: static;
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 64px;
    gap: 10px;
    padding-block: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .brand span:last-child {
    display: inline;
    max-width: 86px;
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-select {
    width: 132px;
    max-width: 132px;
    padding: 8px 10px;
    border-radius: 11px;
    font-size: 15px;
  }

  .hero {
    padding: 48px 0 34px;
  }

  .status-row {
    gap: 8px;
  }

  .status {
    gap: 7px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .hero h1 {
    margin: 24px 0 16px;
    font-size: 42px;
    line-height: 1.02;
    letter-spacing: -.052em;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.62;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    min-height: 50px;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 15px;
  }

  .trial-note {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.65;
  }

  .trust-row {
    gap: 12px;
    margin-top: 30px;
  }

  .trust-card {
    padding: 18px;
    border-radius: 18px;
  }

  .trust-card strong {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .trust-card span {
    font-size: 14px;
  }

  .section {
    padding: 48px 0;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .section h2 {
    margin-bottom: 14px;
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -.04em;
  }

  .section-intro {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
  }

  .grid,
  .pricing-grid {
    gap: 12px;
  }

  .card {
    padding: 22px;
    border-radius: 20px;
  }

  .step-number {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 12px;
  }

  .card h3 {
    margin-bottom: 7px;
    font-size: 20px;
  }

  .card p {
    font-size: 16px;
    line-height: 1.55;
  }

  .price-card {
    padding: 22px;
    border-radius: 20px;
  }

  .plan-name {
    font-size: 15px;
  }

  .price {
    margin: 12px 0 2px;
    font-size: 38px;
  }

  .plan-detail {
    min-height: auto;
    font-size: 15px;
  }

  .price-card .button {
    margin-top: 18px;
  }

  .payment-note {
    margin-top: 16px;
    padding: 14px;
    border-radius: 14px;
    font-size: 13px;
  }

  .account-box {
    gap: 12px;
  }

  .account-panel {
    padding: 22px;
    border-radius: 20px;
  }

  .feature-list {
    gap: 10px;
    margin-top: 18px;
  }

  .feature-item {
    gap: 9px;
    font-size: 15px;
  }

  .feature-item::before {
    width: 22px;
    height: 22px;
  }

  .account-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
  }

  .preview-label,
  .account-status {
    grid-column: 1 / -1;
  }

  .preview-label {
    font-size: 11px;
    line-height: 1.45;
  }

  .balance-box {
    padding: 14px;
    border-radius: 14px;
  }

  .balance-label {
    font-size: 11px;
  }

  .balance-value {
    font-size: 24px;
  }

  .account-status {
    font-size: 13px;
  }

  .final-cta .section-intro {
    max-width: 520px;
  }

  .footer {
    padding: 25px 0;
  }

  .footer-inner {
    gap: 10px;
    font-size: 12px;
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  .brand span:last-child {
    display: none;
  }

  .language-select {
    width: 138px;
    max-width: 138px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .section h2 {
    font-size: 32px;
  }

  .account-preview {
    grid-template-columns: 1fr;
  }

  .preview-label,
  .account-status {
    grid-column: auto;
  }
}


/* ==================================================
   GS TalkFree v0.1.2 — Visual Storytelling
   Asset version: 012-20260712_201349
   ================================================== */

.hero.visual-home {
  position: relative;
  isolation: isolate;
  background-color: #071522;
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 17, 29, 0.96) 0%,
      rgba(4, 20, 33, 0.86) 38%,
      rgba(4, 21, 34, 0.60) 70%,
      rgba(4, 18, 30, 0.46) 100%
    ),
    url("/assets/visuals/home-hero.webp?v=012-20260712_201349");
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: cover, cover;
}

.hero.visual-home > .container {
  position: relative;
  z-index: 1;
}

.visual-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #081522;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.visual-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(5, 18, 31, 0.38) 0%,
      rgba(5, 18, 31, 0.68) 28%,
      rgba(7, 20, 34, 0.91) 58%,
      #081522 86%
    );
}

.visual-section > .container {
  position: relative;
  z-index: 1;
}

.visual-how {
  background-image:
    url("/assets/visuals/how-it-works-hero.webp?v=012-20260712_201349");
}

.visual-about {
  background-image:
    url("/assets/visuals/about-hero.webp?v=012-20260712_201349");
}

.visual-pricing {
  background-image:
    url("/assets/visuals/pricing-hero.webp?v=012-20260712_201349");
}

.visual-pay {
  background-image:
    url("/assets/visuals/pay-hero.webp?v=012-20260712_201349");
}

.visual-section .price-card,
.visual-section .account-box,
.visual-section article {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.visual-section .price-card {
  background-color: rgba(24, 38, 54, 0.91);
}

.visual-section .account-panel,
.visual-section .account-preview {
  background-color: rgba(18, 34, 48, 0.91);
}

@media (max-width: 920px) {
  .hero.visual-home {
    background-image:
      linear-gradient(
        180deg,
        rgba(4, 18, 31, 0.62) 0%,
        rgba(4, 19, 32, 0.78) 34%,
        rgba(5, 19, 32, 0.94) 72%,
        #071522 100%
      ),
      url("/assets/visuals/home-hero.webp?v=012-20260712_201349");
    background-position: center, center top;
    background-size: 100% 100%, 100% auto;
  }
}

@media (max-width: 600px) {
  .hero.visual-home {
    background-image:
      linear-gradient(
        180deg,
        rgba(4, 18, 31, 0.50) 0%,
        rgba(4, 19, 32, 0.76) 24%,
        rgba(5, 19, 32, 0.94) 54%,
        #071522 82%
      ),
      url("/assets/visuals/home-hero-mobile.webp?v=012-20260712_201349");
    background-repeat: no-repeat;
    background-position: center, center top;
    background-size: 100% 100%, 100% auto;
  }

  .visual-section {
    background-position: center top;
    background-size: 100% auto;
  }

  .visual-section::before {
    background:
      linear-gradient(
        180deg,
        rgba(5, 18, 31, 0.46) 0%,
        rgba(5, 18, 31, 0.79) 18%,
        rgba(7, 20, 34, 0.95) 42%,
        #081522 68%
      );
  }

  .visual-how {
    background-image:
      url("/assets/visuals/how-it-works-hero-mobile.webp?v=012-20260712_201349");
  }

  .visual-about {
    background-image:
      url("/assets/visuals/about-hero-mobile.webp?v=012-20260712_201349");
  }

  .visual-pricing {
    background-image:
      url("/assets/visuals/pricing-hero-mobile.webp?v=012-20260712_201349");
  }

  .visual-pay {
    background-image:
      url("/assets/visuals/pay-hero-mobile.webp?v=012-20260712_201349");
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.visual-home,
  .visual-section {
    background-attachment: scroll;
  }
}
