/* =========================================================
   ARKENAPPS – LUXURY CALM THEME (FINAL)
========================================================= */

:root {
  --bg-main: #f6f5f3;
  --bg-soft: #ffffff;
  --bg-muted: #efede9;

  --text-main: #2b2b2b;
  --text-muted: #6b6b6b;

  --accent: #f4c400;
  --accent-dark: #d6aa00;

  --border-soft: #e5e3df;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 12px 30px rgba(0,0,0,0.06);
  --shadow-hover: 0 22px 50px rgba(0,0,0,0.14);
}

/* =========================================================
   GLOBAL RESET
========================================================= */
* { box-sizing: border-box; }

body.lido-theme {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  letter-spacing: -0.4px;
  margin-top: 0;
}

p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* =========================================================
   NAVIGATION
========================================================= */
.lido-nav {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 18px 48px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo { width: 120px; }

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.center-pill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  background: #f0eee9;
  padding: 10px 26px;
  border-radius: 999px;
}

.center-pill a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.center-pill a:hover {
  color: var(--accent-dark);
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* =========================================================
   HERO – STANDARD (Apps Page)
========================================================= */
.lido-hero {
  max-width: 1100px;
  margin: 60px auto 80px;
  padding: 0 40px;
}

.lido-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* =========================================================
   HERO – SPLIT (Homepage)
========================================================= */
.hero-split {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left h1 {
  font-size: 3.1rem;
  margin-bottom: 18px;
}

.hero-btn {
  display: inline-block;
  margin-top: 26px;
  background: var(--accent);
  color: #000;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.hero-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.hero-right {
  display: grid;
  gap: 18px;
}

.hero-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   VALUES STRIP
========================================================= */
.values-strip {
  max-width: 1200px;
  margin: 40px auto 90px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.value-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   FEATURED SPLIT
========================================================= */
.featured-split {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.featured-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  padding: 46px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.mock-box {
  height: 260px;
  background: linear-gradient(135deg, #ebe9e4, #f6f5f3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-weight: 600;
}

/* =========================================================
   SYSTEM TOOLS GRID
========================================================= */
.tools-section {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 40px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.tool-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 30px 28px 34px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.35s ease;
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.tool-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  background: #f0eee9;
  padding: 10px;
  margin-bottom: 20px;
}

.tool-btn {
  display: inline-block;
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
}

.tool-btn:hover {
  background: var(--accent-dark);
}

.tool-card.muted {
  opacity: 0.55;
  pointer-events: none;
}

/* =========================================================
   CTA
========================================================= */
.cta-block {
  max-width: 1100px;
  margin: 100px auto;
  padding: 70px 40px;
  background: var(--bg-muted);
  border-radius: var(--radius-lg);
  text-align: center;
}

/* =========================================================
   BIG FOOTER (NEW)
========================================================= */
.footer-big {
  background: linear-gradient(180deg, #f6f5f3, #efece6);
  border-top: 1px solid var(--border-soft);
  padding: 80px 40px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
  color: var(--text-muted);
}

.footer-col a {
  text-decoration: none;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--text-main);
}

.footer-email {
  margin-top: 14px;
  font-weight: 500;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =========================================================
   SCROLL REVEAL
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }


.app-preview-tile {
  height: 260px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #0f172a, #020617);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}

.app-preview-tile img {
  width: 92px;
  height: 92px;
}

.app-preview-tile span {
  font-size: 0.9rem;
  color: #94a3b8;
}
/* =========================================================
   APP BADGE (Apps Page)
========================================================= */

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1efe9;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 14px;
}

.app-badge img {
  width: 18px;
  height: 18px;
}

.app-badge.muted {
  background: #eee;
  color: #999;
}
/* =========================================================
   CONTACT FORM – ARKENAPPS STYLE
========================================================= */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Inputs & Textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-family: inherit;

  background: #ffffff;
  color: var(--text-main);

  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);

  outline: none;
  transition: all 0.25s ease;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ca3af;
}

/* Focus State */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244, 196, 0, 0.18);
}

/* Textarea */
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* Submit Button */
.contact-form button {
  align-self: flex-start;

  margin-top: 6px;
  padding: 12px 34px;

  background: var(--accent);
  color: #000;

  border: none;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;

  transition: all 0.25s ease;
}

/* Button Hover */
.contact-form button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* Button Active */
.contact-form button:active {
  transform: translateY(0);
  box-shadow: none;
}
/* =========================================================
   GENERIC CONTENT SECTION (About, Privacy, Terms)
========================================================= */

.lido-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
}

.lido-section h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.lido-section p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
  font-size: 2.2rem;
  margin-bottom: 36px;
}

/* =========================================================
   "WE BUILD FOR" GRID
========================================================= */

.build-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  max-width: 1100px;
}

.build-list li {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: left;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}

.icon-box {
  font-size: 1.4rem;
}

/* =========================================================
   ABOUT PAGE CARDS (VISION / MISSION)
========================================================= */

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  max-width: 1100px;
  margin: auto;
}

.about-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {

  .hero-split,
  .featured-split,
  .values-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 2.4rem;
  }

  .center-pill {
    position: static;
    transform: none;
    margin-top: 14px;
  }

  .hamburger {
    display: block;
  }
}
