/* ============================================================
   RAT BUCKET™ — Official Theme
   A Whit Corp Design Solutions Group Production (1998)
   "We spent $4.7M so you wouldn't have to."
   ============================================================ */

/* === RESET ================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === DESIGN TOKENS ========================================= */
:root {
  --red:       #CC0000;
  --red-dark:  #990000;
  --yellow:    #FFD700;
  --blue:      #003399;
  --blue-dark: #001f66;
  --orange:    #FF6600;
  --cream:     #FFFEF0;
  --white:     #FFFFFF;
  --black:     #1A1A1A;
  --grey:      #555555;
  --shadow-hard: 5px 5px 0 var(--black);
  --font-head: 'Oswald', Impact, 'Arial Narrow', Arial, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
}

/* === BASE ================================================== */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* === MARQUEE =============================================== */
.marquee-wrap {
  background: var(--red);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  overflow: hidden;
  padding: 7px 0;
  border-bottom: 3px solid var(--yellow);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track span {
  padding: 0 2.5rem;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === HEADER ================================================ */
header {
  background: linear-gradient(160deg, #001f66 0%, #003399 55%, #001044 100%);
  border-bottom: 6px solid var(--yellow);
  padding: 1.5rem 2rem;
}

.header-link {
  text-decoration: none;
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo-svg svg {
  filter: drop-shadow(3px 4px 6px rgba(0,0,0,0.5));
  transition: transform 0.15s;
}
.header-link:hover .logo-svg svg {
  transform: rotate(-3deg) scale(1.04);
}

.logo-text-wrap {
  flex: 1;
}

.logo-text {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow:
    4px 4px 0 var(--red),
    -2px -2px 0 #FF6600,
    6px 6px 12px rgba(0,0,0,0.4);
  line-height: 1;
}

.tm {
  font-size: 0.5em;
  vertical-align: super;
  letter-spacing: 0;
}

.logo-tagline {
  font-family: var(--font-head);
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  color: var(--white);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.whit-corp-badge {
  font-size: 0.75rem;
  color: #8899cc;
  letter-spacing: 0.2em;
  margin-top: 0.25rem;
  font-style: italic;
}

/* === NAV ================================================== */
nav {
  background: var(--yellow);
  border-bottom: 4px solid var(--red);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  display: block;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-right: 3px solid var(--red);
  transition: background 0.1s, color 0.1s;
}

nav a:first-child { border-left: 3px solid var(--red); }
nav a:hover       { background: var(--red); color: var(--yellow); }
nav a.active      { background: var(--red-dark); color: var(--yellow); }

nav a.order-now {
  background: var(--red);
  color: var(--yellow);
  font-size: 1.05rem;
  animation: pulse-nav 2s ease-in-out infinite;
}
nav a.order-now:hover {
  background: var(--red-dark);
}

@keyframes pulse-nav {
  0%, 100% { background: var(--red); }
  50%       { background: #FF1111; }
}

/* === HERO SECTION ========================================= */
.hero-section {
  background: linear-gradient(180deg, var(--cream) 0%, #FFFBD0 100%);
  border-bottom: 5px solid var(--red);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.as-seen-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--red);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.3rem 1.1rem;
  border: 2.5px solid var(--red);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text h1 .red { color: var(--red); }

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  line-height: 1.65;
}

.but-wait-box {
  background: var(--yellow);
  border: 3px solid var(--red);
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.but-wait-label {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}

/* Product display */
.hero-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.product-display {
  background: var(--white);
  border: 4px solid var(--red);
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 8px 8px 0 var(--blue);
}

.product-svg {
  filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.25));
}

.product-label {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--grey);
}

.product-label-sub {
  font-size: 0.75rem;
  color: #888;
}

/* Starburst */
.starburst-wrap { text-align: center; }

.starburst {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  background: var(--yellow);
  clip-path: polygon(
    50% 0%,   61% 28%, 93%  9%, 79% 38%,
   100% 50%,  79% 62%, 93% 91%, 61% 72%,
    50% 100%, 39% 72%,  7% 91%, 21% 62%,
     0% 50%,  21% 38%,  7%  9%, 39% 28%
  );
  text-align: center;
  animation: starburst-spin-subtle 8s ease-in-out infinite;
}

@keyframes starburst-spin-subtle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25%       { transform: rotate(2deg) scale(1.03); }
  75%       { transform: rotate(-2deg) scale(1.03); }
}

.starburst-only {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.starburst-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.starburst-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--red-dark);
  font-weight: bold;
}

/* === PROBLEM / SOLUTION BAND ============================== */
.ps-band {
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
}

.ps-item {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ps-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--yellow);
  text-transform: uppercase;
  display: block;
}

.ps-problem { color: #FFAAAA; }
.ps-solution { color: #AAFFAA; font-size: 1.3rem; }

.ps-arrow {
  font-size: 2.5rem;
  color: var(--yellow);
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

/* === FEATURES ============================================= */
.features {
  padding: 3.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--blue);
  border-bottom: 5px solid var(--red);
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
}

.features h2 .red { color: var(--red); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  border: 3px solid var(--red);
  padding: 1.5rem;
  background: var(--white);
  text-align: center;
  box-shadow: 5px 5px 0 var(--blue);
  transition: transform 0.12s, box-shadow 0.12s;
}

.feature-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--blue);
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 0.6rem;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.feature-card p { font-size: 0.92rem; line-height: 1.55; }

.features-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* === TESTIMONIALS (homepage) ============================== */
.home-testimonials {
  background: var(--blue);
  padding: 3rem 2rem;
  text-align: center;
}

.section-title-light {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,215,0,0.3);
  padding: 1.5rem;
  text-align: left;
}

.t-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.t-attr {
  font-size: 0.8rem;
  color: var(--yellow);
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

/* === GUARANTEE ============================================ */
.guarantee-section {
  padding: 3rem 2rem;
  background: #F2F4FF;
  border-top: 5px solid var(--blue);
  border-bottom: 5px solid var(--blue);
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-badge {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--blue);
  border: 6px solid var(--yellow);
  box-shadow: 0 0 0 4px var(--blue), 0 0 0 8px var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.guarantee-number {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}

.guarantee-unit {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3em;
}

.guarantee-text {
  font-size: 0.65rem;
  color: #AABBFF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  line-height: 1.4;
}

.guarantee-copy h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.guarantee-copy p { font-size: 0.95rem; margin-bottom: 0.5rem; }

.guarantee-fine {
  font-size: 0.75rem !important;
  color: #888 !important;
  line-height: 1.5;
}

/* === CTA SECTION ========================================== */
.cta-section {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.cta-section--compact { padding: 2.5rem 2rem; }

.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--black);
  margin-bottom: 0.5rem;
}

.cta-compact-label {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cta-sub {
  color: #FFCCCC;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.cta-sub-small {
  color: #FFAAAA;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.cta-phone {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  margin: 0.75rem 0;
}

.cta-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--red-dark);
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.9rem 3rem;
  border: 4px solid var(--black);
  text-decoration: none;
  box-shadow: var(--shadow-hard);
  letter-spacing: 0.08em;
  margin: 1rem auto;
  transition: transform 0.1s, box-shadow 0.1s;
}

.cta-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--black);
}

.cta-fine {
  font-size: 0.72rem;
  color: #FFAAAA;
  max-width: 620px;
  margin: 1rem auto 0;
  line-height: 1.55;
}

/* === SHARED BUTTON ======================================== */
.secondary-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.7rem 2rem;
  border: 3px solid var(--black);
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--black);
  letter-spacing: 0.08em;
  transition: transform 0.1s, box-shadow 0.1s;
}

.secondary-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--black);
}

.secondary-btn.light {
  background: var(--yellow);
  color: var(--red-dark);
}

/* === INTERIOR PAGE HERO =================================== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 6px solid var(--yellow);
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
  margin-bottom: 0.5rem;
}

.page-hero-sub {
  color: #AABBFF;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* === INTERIOR PAGE CONTENT ================================ */
.page-content {
  max-width: 920px;
  margin: 3rem auto;
  padding: 0 2rem 2rem;
  font-size: 1.02rem;
  line-height: 1.7;
}

.page-content h2 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  margin: 2.5rem 0 0.8rem;
  border-bottom: 4px solid var(--yellow);
  padding-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.page-content h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
  margin: 1.6rem 0 0.4rem;
  letter-spacing: 0.03em;
}

.page-content p { margin-bottom: 1rem; }

.page-content strong { color: var(--red); }

.page-content em { color: var(--grey); }

.page-content hr {
  border: none;
  border-top: 3px dashed var(--red);
  margin: 2.5rem 0;
  opacity: 0.5;
}

/* Blockquotes — testimonial style */
.page-content blockquote {
  border-left: 6px solid var(--red);
  padding: 1rem 1.5rem;
  background: #FFF5F5;
  margin: 1.5rem 0;
  font-style: italic;
  color: #222;
  line-height: 1.7;
}

.page-content blockquote p { margin-bottom: 0.4rem; }

.page-content blockquote strong {
  color: var(--blue);
  font-style: normal;
  display: block;
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.page-content blockquote em {
  color: var(--grey);
  font-size: 0.85rem;
  display: block;
  margin-top: 0.1rem;
}

/* Tables */
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.93rem;
}

.page-content th {
  background: var(--blue);
  color: var(--yellow);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.7rem 1rem;
  text-align: left;
  letter-spacing: 0.05em;
}

.page-content td {
  border: 2px solid #DDDDDD;
  padding: 0.55rem 1rem;
  vertical-align: top;
}

.page-content tr:nth-child(even) td { background: #F0F2FF; }

/* Lists */
.page-content ul,
.page-content ol {
  margin: 0.75rem 0 1rem 2rem;
}

.page-content li { margin-bottom: 0.4rem; }

/* === FOOTER =============================================== */
footer {
  background: #111111;
  color: #777777;
  text-align: center;
  padding: 2.5rem 2rem;
  border-top: 5px solid #333;
  font-size: 0.78rem;
  line-height: 1.9;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #AAAAAA;
  letter-spacing: 0.3em;
  margin-bottom: 0.4rem;
}

.footer-divisions {
  color: #888;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.footer-phone {
  color: #999;
  margin-bottom: 1rem;
}

.footer-phone em { color: #666; }

.footer-copyright {
  color: #666;
  margin-bottom: 0.4rem;
}

.footer-disclaimer {
  color: #555;
  max-width: 700px;
  margin: 0 auto 0.5rem;
  line-height: 1.6;
}

.footer-fine {
  color: #444;
  max-width: 600px;
  margin: 0.75rem auto 0;
  font-style: italic;
}

/* === ANIMATIONS =========================================== */
@keyframes blink {
  0%, 49%  { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.blink { animation: blink 0.9s step-end infinite; }

/* === RESPONSIVE =========================================== */
@media (max-width: 900px) {
  .hero                 { grid-template-columns: 1fr; }
  .hero-product         { margin-top: 1rem; }
  .feature-grid         { grid-template-columns: repeat(2, 1fr); }
  .testimonial-strip    { grid-template-columns: 1fr; }
  .guarantee-inner      { flex-direction: column; text-align: center; }
  .guarantee-badge      { margin: 0 auto; }
}

@media (max-width: 600px) {
  .header-inner         { flex-direction: column; text-align: center; }
  .logo-svg             { display: none; }
  nav a                 { padding: 0.75rem 1rem; font-size: 0.9rem; border-right: none; border-bottom: 2px solid var(--red); }
  nav a:first-child     { border-left: none; }
  .feature-grid         { grid-template-columns: 1fr; }
  .ps-band              { flex-direction: column; }
  .ps-arrow             { transform: rotate(90deg); padding: 0; }
}
