/* ===================================================
   Glossy web 2.0 corporate style (circa 2008-2011)
   =================================================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: #333333;
  background-color: #06231f;
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,0.15) 0px, transparent 4px),
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.12) 0px, transparent 3px),
    radial-gradient(circle at 60% 15%, rgba(255,255,255,0.18) 0px, transparent 5px),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.10) 0px, transparent 3px),
    radial-gradient(circle at 25% 55%, rgba(255,255,255,0.12) 0px, transparent 4px),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.10) 0px, transparent 3px),
    radial-gradient(circle at 90% 85%, rgba(255,255,255,0.14) 0px, transparent 4px),
    linear-gradient(160deg, #08332c 0%, #04211c 45%, #010c0a 100%);
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* ===================== TOP UTILITY BAR ===================== */

.utility-bar {
  text-align: right;
  padding: 4px 20px;
  font-size: 11px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.utility-bar a {
  color: #7fd9c4;
  text-decoration: none;
}

.utility-bar a:hover {
  text-decoration: underline;
}

/* ===================== HEADER / NAV ===================== */

.site-header {
  padding: 10px 20px 20px 20px;
}

.header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

/* Main logo image - old-school header logos ran roughly 280x60 */
.logo-img {
  height: 46px;
}

.logo-tagline {
  color: #6fbf9a;
  font-style: italic;
  font-size: 13px;
}

.glass-nav {
  display: flex;
  gap: 4px;
}

.glass-nav a {
  display: inline-block;
  padding: 12px 18px;
  color: #cfeee3;
  text-decoration: none;
  font-size: 14px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  transition: background 0.2s;
}

.glass-nav a:hover {
  background: linear-gradient(to bottom, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
}

.glass-nav a.nav-active {
  background: linear-gradient(to bottom, rgba(255,255,255,0.28), rgba(255,255,255,0.08));
  color: #ffffff;
  font-weight: bold;
}

/* ===================== HERO BANNER ===================== */

.hero-banner {
  position: relative;
  margin: 0 20px 20px 20px;
  min-height: 260px;
  background: linear-gradient(120deg, #ffffff 0%, #f2fbf8 55%, #eafaf1 100%);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Hero photo slot - person on the phone, product shot, etc */
.hero-photo {
  height: 260px;
  width: 45%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}

/* If no photo is present yet, this keeps space reserved */
.hero-photo:not([src]), .hero-photo[src=""] {
  background-color: #dfeee9;
}

.hero-copy {
  padding: 20px 30px;
}

.hero-kicker {
  margin: 0;
  font-size: 26px;
  color: #2a2a2a;
  font-weight: bold;
}

.hero-title {
  margin: 0 0 4px 0;
  font-size: 54px;
  font-weight: bold;
  background: linear-gradient(to bottom, #8fd48a, #d9822b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.hero-subtitle {
  margin: 6px 0;
  font-size: 20px;
  color: #2f6e5c;
  font-weight: bold;
  line-height: 1.3;
}

.hero-tag {
  margin: 10px 0 16px 0;
  font-size: 16px;
  color: #1f7a5c;
  font-weight: bold;
}

.pill-button {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #cdeee0, #a9dcc7);
  color: #1f5c46;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  border: 1px solid #8fcdb2;
}

.pill-button:hover {
  background: linear-gradient(to bottom, #d9f5e8, #b8e6d1);
}

/* ===================== MAIN CONTENT ===================== */

.main-area {
  display: flex;
  gap: 30px;
  padding: 0 20px 30px 20px;
}

.content {
  flex: 1;
  min-width: 0;
  color: #d7ece5;
}

.section-heading {
  color: #e08a3c;
  font-size: 28px;
  margin-bottom: 6px;
}

.lead {
  font-size: 15px;
  color: #ffffff;
  margin: 4px 0;
}

.lead-accent {
  font-size: 18px;
  color: #7fd9a6;
  font-weight: bold;
  margin: 4px 0 16px 0;
}

.content p {
  line-height: 1.6;
  font-size: 14px;
  color: #cfe6dd;
}

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

.feature-card {
  flex: 1;
  min-width: 160px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 16px;
}

.feature-card h3 {
  margin-top: 0;
  color: #ffffff;
  font-size: 15px;
}

.feature-card p {
  font-size: 13px;
  margin-bottom: 0;
  color: #b9d6cb;
}

/* ===================== SIDEBAR ===================== */

.sidebar {
  width: 260px;
  flex-shrink: 0;
}

.search-box {
  display: flex;
  margin-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  padding: 8px 10px;
  border: none;
  font-size: 13px;
}

.search-box button {
  padding: 8px 16px;
  border: none;
  background: linear-gradient(to bottom, #9adf9e, #5fb96a);
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
}

.news-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 16px;
}

.news-box h3 {
  margin-top: 0;
  color: #ffffff;
  font-size: 17px;
}

.news-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.news-date {
  flex-shrink: 0;
  width: 46px;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 6px 0;
}

.news-month {
  display: block;
  font-size: 10px;
  color: #7fd9a6;
  text-transform: uppercase;
}

.news-day {
  display: block;
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
}

.news-text h4 {
  margin: 0 0 4px 0;
  font-size: 13px;
  color: #ffffff;
}

.news-text p {
  margin: 0;
  font-size: 12px;
  color: #b9d6cb;
}

/* ===================== FOOTER ===================== */

.site-footer {
  text-align: center;
  padding: 16px;
  font-size: 11px;
  color: #7fa998;
  border-top: 1px solid rgba(255,255,255,0.08);
}
