/* Ammofy — shared stylesheet */

:root {
  --navy: #0F2A43;
  --orange: #E8722A;
  --grey: #F2F5F8;
  --text: #222831;
  --white: #FFFFFF;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--navy);
  padding: 18px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.header-cta {
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 8px;
  white-space: nowrap;
}

/* Hero / sections */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: 2.1rem;
  line-height: 1.25;
  margin: 0 0 16px;
}

.hero .subhead {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 640px;
  margin: 0 auto;
}

section {
  padding: 48px 0;
}

section.grey {
  background: var(--grey);
}

h2 {
  font-size: 1.6rem;
  margin: 0 0 24px;
  color: var(--navy);
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 1.05rem;
  text-align: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: #d3661f;
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-block {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.cta-center {
  text-align: center;
  margin: 32px 0;
}

/* Homepage split cards */
.split-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0;
}

@media (min-width: 700px) {
  .split-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.split-card {
  display: block;
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: 12px;
  padding: 32px 24px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.split-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.split-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin: 0 0 10px;
}

.split-card p {
  margin: 0 0 16px;
  color: var(--text);
}

.split-card .card-arrow {
  color: var(--orange);
  font-weight: 700;
}

.founder-line {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text);
}

/* Bullet cards (offer pages) */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-card {
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 20px 22px;
  box-shadow: 0 1px 3px rgba(15, 42, 67, 0.08);
}

.feature-card p {
  margin: 0;
}

/* Pricing box */
.pricing-box {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.pricing-box .price-old {
  text-decoration: line-through;
  color: #9fb2c3;
  font-size: 1.1rem;
}

.pricing-box .price-new {
  color: var(--orange);
  font-size: 2.2rem;
  font-weight: 800;
  margin: 6px 0 14px;
}

.pricing-box .price-note {
  color: var(--grey);
  font-size: 0.98rem;
}

.spots-remaining {
  display: inline-block;
  margin-top: 16px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .pricing-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-tier {
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
}

.pricing-tier.best {
  border-color: var(--orange);
}

.pricing-tier .tier-label {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-tier .tier-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 6px;
}

.pricing-tier .tier-note {
  font-size: 0.92rem;
  color: var(--text);
}

/* Guarantee box */
.guarantee-box {
  background: var(--grey);
  border-radius: 10px;
  padding: 24px 28px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
}

.audit-box {
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 10px;
  padding: 28px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.intro-line {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  text-align: center;
}

.ownership-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--grey);
  padding: 36px 0;
  font-size: 0.95rem;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-name {
  font-weight: 700;
  color: var(--white);
}
