/*
  TGO Enterprises — Landing Page styles
  © 2026 TGO Enterprises. All rights reserved. Proprietary.
*/

:root {
  --cream:     #F7F3E7;
  --cream-2:   #F1ECDC;
  --panel:     #FFFDF6;
  --panel-2:   #FAF6EA;
  --line:      #DFD8C4;
  --line-soft: #E8E2D1;

  --green:        #2f6f4e;
  --green-bright: #3d8a63;
  --green-deep:   #24523b;
  --green-dark:   #1B3D2C;

  --gold:        #C2A23B;
  --gold-bright: #E4C25C;
  --gold-deep:   #8C6F22;

  --text:    #26312B;
  --muted:   #5B665F;
  --muted-2: #7E877F;

  --maxw: 1120px;
  --radius: 16px;
  --shadow: 0 18px 50px -24px rgba(36, 82, 59, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(47,111,78,0.10) 0%, rgba(47,111,78,0) 60%),
    var(--cream);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--green-dark);
}

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

.section { max-width: var(--maxw); margin: 0 auto; padding: 92px 24px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(247,243,231,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { height: 30px; width: auto; }
.brand-name {
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 15px;
  color: var(--green-dark);
}
.brand-name em { color: var(--green); font-style: normal; font-weight: 500; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav a:hover { color: var(--green-deep); }
.nav-cta {
  color: var(--green-deep) !important;
  border: 1px solid rgba(47,111,78,0.45);
  padding: 7px 16px;
  border-radius: 999px;
}
.nav-cta:hover { background: rgba(47,111,78,0.08); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 70px 24px 88px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { text-align: left; }
.hero-copy .hero-lede { margin-left: 0; }
.hero-copy .hero-actions { justify-content: flex-start; }
.hero-art { margin: 0; }
.hero-art img {
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 22px;
  border: 3px solid rgba(140,111,34,0.45);
  box-shadow: 0 26px 60px -24px rgba(36,82,59,0.45);
  transform: rotate(1.2deg);
}
.hero-glow {
  position: absolute;
  inset: -40px 0 auto 0;
  height: 460px;
  margin: auto;
  background: radial-gradient(520px 280px at 50% 30%, rgba(47,111,78,0.12), rgba(47,111,78,0) 70%);
  pointer-events: none;
  z-index: -1;
}
.hero-logo {
  width: 220px;
  max-width: 56vw;
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(36,82,59,0.25));
}
.hero-tagline {
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 4.4vw, 2.5rem);
  margin: 26px 0 10px;
  color: var(--green-dark);
}
.hero-sub {
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 22px;
  padding-left: 0.42em;
}
.hero-lede {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-gold {
  background: linear-gradient(180deg, var(--green-bright), var(--green));
  color: #FDFBF2;
  box-shadow: 0 10px 26px -10px rgba(47,111,78,0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(47,111,78,0.75); }
.btn-ghost { border: 1px solid rgba(47,111,78,0.4); color: var(--green-deep); }
.btn-ghost:hover { border-color: var(--green); background: rgba(47,111,78,0.07); }

/* ===== Section headings ===== */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); }
.section-head p { color: var(--muted); margin: 14px 0 0; }

/* ===== App grid ===== */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.app-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
}
.app-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.app-card:hover { transform: translateY(-4px); border-color: rgba(47,111,78,0.5); box-shadow: var(--shadow); }
.app-card:hover::before { opacity: 1; }
.app-card--soon { opacity: 0.9; }

.app-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.app-icon {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 13px;
  color: var(--green);
  background: rgba(47,111,78,0.09);
  border: 1px solid rgba(47,111,78,0.25);
}
.app-icon .ic-gold { stroke: var(--gold-deep); }
.app-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.app-card p { color: var(--muted); font-size: 0.96rem; margin: 0 0 22px; flex: 1; }
.app-card p a { color: var(--green); font-weight: 600; }

.badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.badge-live { color: #1e6b40; background: rgba(46,204,113,0.13); border: 1px solid rgba(46,150,90,0.4); }
.badge-beta { color: var(--gold-deep); background: rgba(194,162,59,0.13); border: 1px solid rgba(194,162,59,0.4); }
.badge-soon { color: var(--muted); background: rgba(38,49,43,0.05); border: 1px solid var(--line); }

.app-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  color: var(--green);
  margin-top: auto;
}
.app-link svg { transition: transform .18s ease; }
.app-link:hover svg { transform: translate(2px, -2px); }
.app-link--muted { color: var(--muted); }
.app-link--muted:hover { color: var(--green-deep); }
.app-link--muted:hover svg { transform: translateX(3px); }

.app-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}
.app-links .app-link { margin-top: 0; }
.app-signin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 13px;
  border-radius: 999px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.app-signin:hover {
  color: var(--green-deep);
  border-color: rgba(47,111,78,0.45);
  background: rgba(47,111,78,0.06);
}

/* ===== Values ===== */
.values { background: linear-gradient(180deg, rgba(47,111,78,0.05), transparent); }
.value-row {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.value-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  transition: border-color .2s ease, box-shadow .25s ease;
}
.value-card summary {
  list-style: none;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  text-align: center;
  padding: 28px 12px 24px;
  color: var(--green-dark);
}
.value-card summary::-webkit-details-marker { display: none; }
.value-card summary::after {
  content: "+";
  display: block;
  margin-top: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  transition: transform .2s ease;
}
.value-card:hover { border-color: rgba(47,111,78,0.5); box-shadow: var(--shadow); }
.value-card[open] { border-color: rgba(47,111,78,0.55); }
.value-card[open] summary { padding-bottom: 4px; }
.value-card[open] summary::after { content: "\2212"; }
.value-card span {
  display: block;
  font-family: "Inter", sans-serif;
  color: var(--gold-deep);
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  font-weight: 700;
}
.value-card p {
  margin: 0;
  padding: 10px 18px 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: center;
}

/* ===== Capabilities ===== */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.cap {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: var(--panel);
  border-left: 3px solid var(--green);
}
.cap h4 { font-size: 1.05rem; margin-bottom: 8px; }
.cap p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ===== CTA ===== */
.cta {
  max-width: 980px;
  margin: 20px auto 60px;
  padding: 56px 48px;
  background: linear-gradient(180deg, var(--green-deep), var(--green-dark));
  border-radius: 24px;
  box-shadow: 0 24px 60px -28px rgba(27,61,44,0.6);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
}
.cta-copy { text-align: left; }
.cta-art { margin: 0; }
.cta-art img {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 18px;
  border: 3px solid rgba(228,194,92,0.35);
  box-shadow: 0 22px 50px -20px rgba(0,0,0,0.55);
  transform: rotate(-1.2deg);
}
.cta-mark { width: 84px; opacity: 0.95; margin-bottom: 22px; }
.cta h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); color: #F7F3E7; }
.cta p { color: rgba(247,243,231,0.75); margin: 16px 0 30px; max-width: 480px; }
.cta .btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #2b2208;
  box-shadow: 0 10px 26px -10px rgba(0,0,0,0.45);
}
.cta .btn-gold:hover { box-shadow: 0 16px 34px -12px rgba(0,0,0,0.55); }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid rgba(27,61,44,0.15);
  background: var(--green-dark);
  padding: 44px 24px 32px;
  color: #E9E4D4;
}
.footer-main {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-mark { height: 42px; }
.footer-brand strong { font-family: "Cinzel", serif; letter-spacing: 0.1em; display: block; color: #F7F3E7; }
.footer-brand span { color: rgba(233,228,212,0.6); font-size: 13px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { color: rgba(233,228,212,0.75); font-size: 14px; transition: color .2s; }
.footer-nav a:hover { color: var(--gold-bright); }
.copyright {
  max-width: var(--maxw);
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(233,228,212,0.15);
  color: rgba(233,228,212,0.55);
  font-size: 13px;
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { text-align: center; }
  .hero-copy .hero-lede { margin-left: auto; }
  .hero-copy .hero-actions { justify-content: center; }
  .hero-art img { max-width: 340px; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-copy { text-align: center; }
  .cta p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 720px) {
  .nav { gap: 16px; }
  .nav a:not(.nav-cta) { display: none; }
  .value-row { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 68px 20px; }
  .footer-main { flex-direction: column; align-items: flex-start; }
  .cta { border-radius: 0; margin: 20px 0 0; }
}

/* ===== SignManager Pricing ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: var(--maxw);
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
}
.price-card--featured {
  border-color: rgba(47,111,78,0.6);
  box-shadow: 0 18px 50px -22px rgba(47,111,78,0.35);
}
.price-flag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
  color: #FDFBF2;
  background: linear-gradient(180deg, var(--green-bright), var(--green));
}
.price-card h3 { font-family: "Cinzel", serif; font-size: 1.12rem; letter-spacing: 0.05em; margin: 0 0 12px; }
.price-figure {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
}
.price-figure span { font-size: 0.95rem; font-weight: 500; color: var(--muted); margin-left: 6px; }
.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin: 0 0 10px;
}
.price-sub { color: var(--muted); font-size: 0.94rem; margin: 0 0 18px; }
.price-tag { color: var(--muted); font-size: 0.94rem; margin: 0 0 18px; }
.price-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.price-list li {
  position: relative;
  padding: 7px 0 7px 26px;
  color: var(--text);
  font-size: 0.92rem;
  border-top: 1px solid var(--line-soft);
}
.price-list li:first-child { border-top: none; }
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--green);
  font-weight: 700;
}
.price-list strong { color: var(--green-deep); font-weight: 600; }
.price-btn { width: 100%; text-align: center; justify-content: center; }
.price-note { text-align: center; color: var(--muted-2); font-size: 13px; margin: 26px auto 0; }
.price-note a { color: var(--green); font-weight: 600; }
