:root {
  /* True cream/off-white palette */
  --bg-cream: #FFFDF9;
  --bg-cream-alt: #FBF9F6;
  --bg-warm: #F8F6F2;
  --text-dark: #1A1A1A;
  --text-muted: #5C5C5C;
  --text-light: #7A7A7A;
  
  /* Sunrise gradient colors - warmer, richer */
  --sunrise-coral: #E85D3B;
  --sunrise-orange: #F4924C;
  --sunrise-peach: #F7B267;
  --sunrise-pink: #E84A6F;
  --sunrise-warm: #F07850;
  
  /* Accent & UI */
  --accent-primary: #E85D3B;
  --accent-hover: #D14E2E;
  --accent-glow: rgba(232, 93, 59, 0.12);
  --card-bg: #FFFFFF;
  --card-border: rgba(0, 0, 0, 0.08);
  --shadow-soft: rgba(0, 0, 0, 0.06);
  
  /* Dark variant for logo cards */
  --card-dark: #1A1A1A;
  --card-dark-border: #2A2A2A;
}

/* Ensure Poppins is available even when HTML doesn't link it */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--bg-cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar {
  padding-left: 15px;
  padding-right: 15px;
}

.bg-metal {
  background: linear-gradient(90deg, #E85D3B 0%, #F4924C 50%, #F7B267 100%);
  border-bottom: none;
  box-shadow: 0 4px 20px rgba(232, 93, 59, 0.2);
}

.bg-metal-hero {
  background: var(--bg-cream);
  color: var(--text-dark);
}



/* Navbar collapse — use Bootstrap defaults; hide toggler on desktop */
.navbar .navbar-toggler {
  display: none;
  margin-right: 15px;
  border: none;
  background: transparent;
  padding: 4px 6px;
  border-radius: 6px;
}

@media (max-width: 991px) {
  .navbar .navbar-toggler { display: block; }
}

/* Keep default collapse/show behavior and make the collapsed menu transparent by default */
.navbar .navbar-collapse {
  position: static;
  background: transparent;
  border: none;
  padding: 0;
}

/* Keep links readable in collapsed mobile menus */
.navbar .navbar-collapse .nav-link { color: rgba(255, 255, 255, 0.9); display: block; padding: .5rem 1rem; }

/* Toggler focus/hover states (subtle) */
.navbar .navbar-toggler:focus, .navbar .navbar-toggler:hover { outline: none; background: rgba(255, 255, 255, 0.1); }

/* Slight background on the mobile collapsed menu */
@media (max-width: 991px) {
  .navbar .navbar-collapse { background: rgba(0, 0, 0, 0.1); border-radius: 12px; padding: 12px; backdrop-filter: blur(10px); }
}

/* Add the following CSS to adjust the navbar toggle icon position */
.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='3' y1='12' x2='27' y2='12' stroke='%23fff' stroke-width='2'%3E%3C/line%3E%3Cline x1='3' y1='6' x2='27' y2='6' stroke='%23fff' stroke-width='2'%3E%3C/line%3E%3Cline x1='3' y1='18' x2='27' y2='18' stroke='%23fff' stroke-width='2'%3E%3C/line%3E%3C/svg%3E");
  background-size: 24px 24px; width: 24px; height: 24px; display: inline-block; position: relative; transform: none; vertical-align: middle;
}

.navbar .navbar-brand { color: #fff; font-weight: 700; letter-spacing: 0.3px; }

/* Add subtle sunrise indicator to brand */
.navbar .navbar-brand::before { content: ''; display: inline-block; width: 6px; height: 22px; margin-right: 12px; vertical-align: middle; background: #fff; border-radius: 3px; box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3); }

.navbar-nav .nav-link { color: rgba(255, 255, 255, 0.9); font-weight: 500; padding: 0.65rem 0.9rem; transition: color .2s ease; }

.navbar-nav .nav-link:hover { color: #fff; }

.hero { position: relative; padding: 100px 0 80px; text-align: center; color: var(--text-dark); }

.hero:before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; background: transparent; }

.hero .container { position: relative; z-index: 2; }

.hero h1 { font-size: clamp(32px, 6vw, 58px); font-weight: 800; letter-spacing: -1px; margin-bottom: 20px; color: var(--text-dark); }
.hero h1 span { color: var(--sunrise-coral); }

.hero p.lead { font-size: 18px; color: var(--text-muted); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

.hero img { width: 120px; height: auto; margin-bottom: 20px; border-radius: 16px; transition: transform 0.25s ease; }

.hero img:hover { transform: translateY(-4px) scale(1.02); }

.logo-frame { display: inline-block; padding: 28px; border-radius: 20px; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
.logo-frame img { width: 120px; height: auto; display: block; }

/* Icon wrapper to handle transparent assets consistently */
.icon-bg { display: inline-flex; align-items: center; justify-content: center; width: 88px; height: 88px; border-radius: 16px; background: var(--card-dark); border: 1px solid var(--card-dark-border); box-shadow: 0 8px 24px var(--shadow-soft); }
.icon-bg img { width: 48px; height: 48px; object-fit: contain; display: block; background: transparent; }

/* Avatar wrapper for team photos */
.avatar-bg { display: inline-flex; align-items: center; justify-content: center; width: 180px; height: 180px; border-radius: 50%; background: linear-gradient(135deg, var(--sunrise-coral), var(--sunrise-orange)); padding: 4px; box-shadow: 0 12px 40px var(--shadow-soft); overflow: hidden; }
.avatar-bg img { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--card-bg); border-radius: 50%; }

/* App icons — larger variants for app cards or featured listings */
.icon-bg.app-large { width: 120px; height: 120px; border-radius: 20px; }
.icon-bg.app-large img { width: 72px; height: 72px; }

/* App card style for hosted app listings */
.apps-section { padding: 60px 0; background: var(--bg-warm); }
.app-card { border-radius: 20px; background: var(--card-bg); border: 1px solid var(--card-border); box-shadow: 0 8px 32px var(--shadow-soft); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.app-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1); }
.app-card h5 { margin-top: 16px; margin-bottom: 8px; font-weight: 700; color: var(--text-dark); }
.app-card p { margin-bottom: 16px; color: var(--text-muted); }
.app-card .btn-neon { padding: 12px 24px; }

/* Simple badge for product status */
.badge-ghost { display: inline-block; padding: 6px 14px; font-size: 12px; font-weight: 600; color: #fff; background: linear-gradient(135deg, var(--sunrise-coral), var(--sunrise-orange)); border-radius: 20px; box-shadow: 0 4px 12px var(--accent-glow); }

/* Redirect countdown (splash pages) */
.redirect-note { color: var(--text-muted); font-size: 14px; }
.redirect-note a { color: var(--accent-primary); text-decoration: underline; }

/* Feature card */
.feature-card { padding: 24px; border-radius: 16px; background: var(--card-bg); border: 1px solid var(--card-border); box-shadow: 0 8px 24px var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(255, 123, 84, 0.12); }
.feature-card h5 { margin-top: 8px; margin-bottom: 8px; font-weight: 700; color: var(--text-dark); }
.feature-card p { margin-bottom: 0; font-size: 14px; color: var(--text-muted); }

/* Dashboard card for hero mock */
.dashboard-card { padding: 32px; border-radius: 24px; background: linear-gradient(135deg, #E85D3B 0%, #D14E2E 50%, #B8412A 100%); border: none; box-shadow: 0 20px 60px rgba(232, 93, 59, 0.3); min-height: 280px; display: flex; align-items: center; justify-content: center; }
.dashboard-top { display: flex; align-items: center; justify-content: center; gap: 16px; }
.dashboard-title { font-weight: 700; color: var(--text-dark); }
.dashboard-body { margin-top: 16px; color: var(--text-muted); font-size: 14px; }


.hero p { margin-bottom: 20px; }

.btn-neon { display: inline-block; padding: 14px 32px; border-radius: 12px; color: #fff; text-decoration: none; font-weight: 600; background: linear-gradient(135deg, var(--sunrise-coral), var(--sunrise-orange)); border: none; box-shadow: 0 8px 24px var(--accent-glow); transition: transform .2s ease, box-shadow .2s ease; }

.btn-neon:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 123, 84, 0.25); color: #fff; }

.btn-outline-metal { display: inline-block; padding: 14px 32px; border-radius: 12px; background: transparent; border: 2px solid var(--card-border); color: var(--text-dark); text-decoration: none; font-weight: 600; transition: all .2s ease; }

.btn-outline-metal:hover { border-color: var(--accent-primary); color: var(--accent-primary); background: var(--accent-glow); }

.footer { padding: 32px 0; color: var(--text-muted); background: var(--bg-cream-alt); border-top: 1px solid var(--card-border); text-align: center; }

.team-section { background: var(--bg-cream); padding: 60px 0; }

.team-section h2 { color: var(--text-dark); font-size: 36px; font-weight: 800; margin-bottom: 40px; }

/* Modern section heading with sunrise accent */
.section-title { position: relative; display: inline-block; padding-bottom: 12px; color: var(--text-dark); font-weight: 800; }
.section-title::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 60px; height: 4px; background: linear-gradient(90deg, var(--sunrise-coral), var(--sunrise-orange)); border-radius: 4px; }

/* CTA strip above footer */
.cta-bar { padding: 28px 32px; margin-top: 48px; border-radius: 20px; background: var(--card-bg); border: 1px solid var(--card-border); display: flex; align-items: center; justify-content: space-between; gap: 20px; box-shadow: 0 8px 32px var(--shadow-soft); }
.cta-bar .left { color: var(--text-dark); font-weight: 700; }
.cta-bar .right { display: flex; gap: 12px; align-items: center; }

/* Spacing and layout for features */
.features { padding: 48px 0; }

/* Small utility for muted nav */
.muted { color: var(--text-muted); }

.team-member { text-align: center; margin-bottom: 40px; }

.team-member h4 { margin-top: 20px; font-size: 20px; font-weight: 700; color: var(--text-dark); }

.team-member p { font-size: 16px; margin-top: 6px; color: var(--text-muted); }

.team-member img { width: 172px; height: 172px; object-fit: cover; border-radius: 50%; transition: transform .2s ease, box-shadow .2s ease; }

.team-member img:hover { transform: translateY(-4px) scale(1.02); }

/* Hover label on team image anchors */
.team-member a { display: inline-block; position: relative; }
.team-member a::after { content: "View profile"; position: absolute; left: 50%; transform: translateX(-50%) translateY(8px); bottom: -12px; padding: 8px 14px; background: var(--text-dark); color: #fff; font-size: 12px; font-weight: 500; border-radius: 8px; opacity: 0; transition: opacity .2s ease, transform .2s ease; }
.team-member a:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }

.image-gallery { background: var(--bg-cream-alt); padding: 60px 0; }

.image-gallery h2 { color: var(--text-dark); font-size: 32px; font-weight: 700; margin-bottom: 24px; }

.image-gallery .row { justify-content: center; gap: 20px; }

.image-gallery img { width: 100%; max-width: 280px; height: auto; margin-bottom: 20px; cursor: pointer; border-radius: 16px; object-fit: cover; box-shadow: 0 8px 32px var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease; }

.image-gallery img:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12); }

.support-section { background: var(--bg-warm); padding: 60px 0; }

.support-section h2 { color: var(--text-dark); font-size: 28px; font-weight: 700; margin-bottom: 32px; }

.support-section form { max-width: 560px; margin: 0 auto; }

.support-section .form-group { margin-bottom: 20px; }

.support-section label { font-weight: 600; color: var(--text-dark); margin-bottom: 8px; display: block; }

.support-section input, .support-section textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--card-border); background: var(--card-bg); color: var(--text-dark); border-radius: 12px; resize: none; transition: border-color .2s ease, box-shadow .2s ease; }

.support-section input:focus, .support-section textarea:focus { outline: none; border-color: var(--accent-primary); box-shadow: 0 0 0 3px var(--accent-glow); }

.support-section button[type="submit"] { background: linear-gradient(135deg, var(--sunrise-coral), var(--sunrise-orange)); border: none; color: #fff; padding: 14px 28px; border-radius: 12px; font-weight: 700; cursor: pointer; box-shadow: 0 8px 24px var(--accent-glow); transition: transform .2s ease, box-shadow .2s ease; }

.support-section button[type="submit"]:hover { box-shadow: 0 12px 32px rgba(255, 123, 84, 0.25); transform: translateY(-2px); }


/* Screenshot gallery for product pages */
.screenshot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; align-items: start; }
.screenshot-card { background: var(--card-bg); border: 1px solid var(--card-border); padding: 16px; border-radius: 16px; box-shadow: 0 8px 32px var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease; }
.screenshot-card img { width: 100%; height: auto; display: block; border-radius: 12px; }
.screenshot-card:focus, .screenshot-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(255, 123, 84, 0.12); outline: none; }

/* Spotlight screenshot cards - larger, featured display */
.screenshot-card.spotlight { padding: 20px; background: var(--card-bg); border: 1px solid var(--card-border); box-shadow: 0 12px 40px var(--shadow-soft); }
.screenshot-card.spotlight img { border-radius: 12px; }
.screenshot-card.spotlight:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 20px 56px rgba(255, 123, 84, 0.15); }

/* Dark section background for alternating page sections */
.bg-dark-section { background: var(--bg-cream-alt); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }

/* Tech stack grid for displaying technology items */
.tech-stack-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.tech-item { padding: 18px 22px; border-radius: 14px; background: var(--card-bg); border: 1px solid var(--card-border); display: flex; flex-direction: column; gap: 6px; transition: transform .2s ease, box-shadow .2s ease; box-shadow: 0 4px 16px var(--shadow-soft); }
.tech-item:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255, 123, 84, 0.1); }
.tech-item strong { color: var(--text-dark); font-weight: 600; font-size: 14px; }
.tech-item span { font-size: 13px; color: var(--text-muted); }

/* Section title alignment variants */
.section-title.text-start { display: block; }
.section-title.text-start::after { left: 0; transform: none; }

/* Lead text in dark sections */
.bg-dark-section .lead { color: var(--text-muted); }

/* White text utilities for CTA sections */
.text-white-50 { color: var(--text-muted); }

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .cta-bar { flex-direction: column; text-align: center; padding: 24px 20px; }
  .cta-bar .right { flex-direction: column; width: 100%; }
  .cta-bar .right a { width: 100%; text-align: center; }
}

/* CTA Section styling */
.cta-section { background: var(--bg-warm); }
.cta-section h2 { color: var(--text-dark); font-weight: 800; }

/* Active nav link */
.navbar-nav .nav-link.active { color: #fff; font-weight: 600; }


