/*
Theme Name: JavaSense Inner Path Soft
Theme URI: https://innerpath.javasenseapp.com/
Author: JavaSense
Author URI: https://javasenseapp.com/
Description: Installable WordPress homepage prototype for JavaSense Inner Path using the Soft Javanese Inner App-Magazine visual direction.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: javasense-innerpath-soft
Tags: custom-homepage, landing-page, editorial
*/

:root {
  --bg: #F1F6FD;
  --bg-2: #EAF2FC;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #FFFFFF;

  --text: #20242D;
  --muted: #7B8391;
  --soft-text: #9AA3B1;

  --blue: #7AB7FF;
  --blue-soft: #DCEEFF;

  --lilac: #B7A7E6;
  --lilac-soft: #ECE7FA;

  --sage: #BFE3C4;
  --sage-soft: #E5F5E7;

  --peach: #F5C9B8;
  --peach-soft: #FBE9E2;

  --gold: #D7BE83;
  --gold-soft: #F4EAD0;

  --ink: #1F2633;
  --line: rgba(80, 100, 130, 0.12);

  --shadow-soft: 0 18px 55px rgba(92, 119, 156, 0.12);
  --shadow-card: 0 12px 30px rgba(92, 119, 156, 0.10);
  --shadow-float: 0 24px 70px rgba(92, 119, 156, 0.18);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,.85);

  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;

  --container: 1180px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Manrope, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(183, 167, 230, 0.24), transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(122, 183, 255, 0.28), transparent 30rem),
    radial-gradient(circle at 50% 28%, rgba(191, 227, 196, 0.18), transparent 34rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 54%, #EDF3FB);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(122, 183, 255, .72);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 880px);
}

.section {
  position: relative;
  padding: clamp(82px, 10vw, 138px) 0;
}

.soft-card {
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.62));
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 70px rgba(91, 117, 150, .14),
    inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
}

.eyebrow {
  display: inline-flex;
  color: #6D91C8;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.5rem, 7.6vw, 6rem);
  line-height: .96;
  letter-spacing: -.07em;
}

h1 span,
.blue-text {
  color: transparent;
  background: linear-gradient(100deg, #5EABFF, #A99BE8);
  -webkit-background-clip: text;
  background-clip: text;
}

.lilac-text {
  color: #9D8BDC;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5vw, 4.65rem);
  line-height: 1;
  letter-spacing: -.06em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 250, 255, .74);
  border-bottom: 1px solid rgba(255,255,255,.68);
  backdrop-filter: blur(20px);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-orb,
.footer-orb {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 32% 25%, #fff 0 16%, transparent 18%),
    linear-gradient(135deg, var(--blue), var(--lilac) 56%, var(--sage));
  box-shadow: 0 14px 28px rgba(122,183,255,.28), var(--shadow-inset);
}

.brand strong {
  display: block;
  font-size: .98rem;
  letter-spacing: -.02em;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .78rem;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  box-shadow: var(--shadow-inset);
}

.desktop-nav > a,
.dropdown-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #596579;
  font-weight: 700;
  font-size: .9rem;
}

.desktop-nav > a:hover,
.dropdown-toggle:hover,
.nav-dropdown:focus-within .dropdown-toggle,
.nav-dropdown.is-open .dropdown-toggle {
  background: rgba(220,238,255,.8);
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 264px;
  padding: 14px;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(18px);
  transition: opacity .18s ease, transform .18s ease;
}

.dropdown-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: #5F6878;
  font-weight: 700;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  background: var(--blue-soft);
  color: var(--ink);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,.65);
  box-shadow: var(--shadow-inset), var(--shadow-card);
}

.icon-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.3;
  stroke-linecap: round;
}

.mobile-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
}

.mobile-toggle {
  display: none;
  gap: 5px;
}

.hero {
  padding-top: clamp(70px, 8vw, 110px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1.1fr) 220px;
  gap: 24px;
  align-items: center;
}

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

.hero-lead {
  max-width: 560px;
  font-size: clamp(1.1rem, 1.7vw, 1.28rem);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #5D7190;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow-inset);
  font-size: .9rem;
  font-weight: 800;
}

.hero-actions,
.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #5CA9FF, #9C8FE2);
  box-shadow: 0 16px 34px rgba(122,183,255,.36);
}

.button-secondary {
  color: #4D627E;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow-card), var(--shadow-inset);
}

.hero-dashboard {
  position: relative;
  z-index: 1;
  min-height: 680px;
  padding: clamp(14px, 2vw, 24px);
  overflow: hidden;
}

.hero-dashboard img {
  width: 100%;
  height: 100%;
  min-height: 630px;
  object-fit: cover;
  border-radius: 32px;
}

.hero-notes {
  display: grid;
  gap: 16px;
}

.note-card {
  display: grid;
  gap: 7px;
  padding: 20px;
  border-radius: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.note-card:hover,
.soft-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(91, 117, 150, .18), var(--shadow-inset);
}

.note-card strong {
  letter-spacing: -.03em;
}

.note-card small {
  color: var(--muted);
  line-height: 1.45;
}

.note-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  box-shadow: var(--shadow-card), var(--shadow-inset);
}

.note-icon-blue { background: linear-gradient(135deg, #E9F5FF, var(--blue)); }
.note-icon-lilac { background: linear-gradient(135deg, #F5F1FF, var(--lilac)); }
.note-icon-sage { background: linear-gradient(135deg, #F2FFF3, var(--sage)); }

.orb-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: .7;
  pointer-events: none;
}

.orb-bg--one {
  width: 380px;
  height: 380px;
  right: -110px;
  top: 100px;
  background: rgba(122,183,255,.18);
}

.orb-bg--two {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: 0;
  background: rgba(183,167,230,.18);
}

.value-grid {
  display: grid;
  grid-template-columns: .9fr 1fr .9fr;
  gap: 36px;
  align-items: center;
}

.value-labels {
  display: grid;
  gap: 18px;
}

.value-labels div {
  padding: 26px;
  border-radius: 32px;
  background: rgba(255,255,255,.42);
  box-shadow: var(--shadow-inset);
}

.value-labels strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.34rem;
  letter-spacing: -.04em;
}

.value-labels em {
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
}

.value-copy h2,
.feature-copy h2,
.advantages-copy h2,
.section-head h2,
.cta-card h2,
.author-copy h2 {
  margin-top: 14px;
}

.progress-stack {
  display: grid;
  gap: 14px;
}

.progress-card {
  padding: 20px;
  border-radius: 26px;
  box-shadow: var(--shadow-card), var(--shadow-inset);
}

.progress-card span {
  display: block;
  margin-bottom: 14px;
  color: #46556B;
  font-weight: 850;
}

.progress-card i {
  position: relative;
  display: block;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.progress-card i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,.65), currentColor);
}

.progress-blue { background: linear-gradient(135deg, var(--blue-soft), rgba(255,255,255,.72)); color: var(--blue); }
.progress-lilac { background: linear-gradient(135deg, var(--lilac-soft), rgba(255,255,255,.72)); color: var(--lilac); }
.progress-peach { background: linear-gradient(135deg, var(--peach-soft), rgba(255,255,255,.72)); color: var(--peach); }
.progress-sage { background: linear-gradient(135deg, var(--sage-soft), rgba(255,255,255,.72)); color: #88C794; }

.weton-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 38px;
  align-items: center;
}

.weton-product {
  position: relative;
  min-height: 620px;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
}

.orb-watermark {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  opacity: .38;
}

.product-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.floating-chip {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #8A7244;
  font-size: .86rem;
  font-weight: 850;
  box-shadow: var(--shadow-card);
}

.weton-map {
  position: relative;
  z-index: 1;
  width: min(58vw, 330px);
  aspect-ratio: 1;
  margin: 48px auto 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255,255,255,.92) 0 13%, transparent 14%),
    radial-gradient(circle, transparent 0 38%, rgba(122,183,255,.32) 39% 40%, transparent 41%),
    radial-gradient(circle, transparent 0 58%, rgba(183,167,230,.36) 59% 60%, transparent 61%),
    conic-gradient(from 10deg, var(--blue-soft), var(--lilac-soft), var(--sage-soft), var(--peach-soft), var(--blue-soft));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.9), 0 26px 70px rgba(92,119,156,.18);
}

.weton-map span {
  position: absolute;
  inset: 15%;
  border-radius: inherit;
  border: 1px dashed rgba(80,100,130,.2);
}

.weton-map span:nth-child(2) {
  inset: 31%;
}

.weton-map span:nth-child(3) {
  inset: 47%;
  background: linear-gradient(135deg, #7AB7FF, #B7A7E6);
  border: 0;
  box-shadow: 0 14px 34px rgba(122,183,255,.42);
}

.product-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-metrics div,
.reflection-strip {
  padding: 20px;
  border-radius: 26px;
  background: rgba(255,255,255,.58);
  box-shadow: var(--shadow-card), var(--shadow-inset);
}

.product-metrics small,
.reflection-strip small {
  display: block;
  margin-bottom: 8px;
  color: var(--soft-text);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-metrics strong {
  font-size: 1.16rem;
}

.reflection-strip {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(220,238,255,.74), rgba(236,231,250,.72));
}

.reflection-strip strong {
  display: block;
  font-size: 1.24rem;
  letter-spacing: -.04em;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}

.advantage-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.adv-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 38px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.adv-card:nth-child(1) { background: linear-gradient(145deg, rgba(220,238,255,.86), rgba(255,255,255,.66)); }
.adv-card:nth-child(2) { background: linear-gradient(145deg, rgba(251,233,226,.9), rgba(255,255,255,.66)); }
.adv-card:nth-child(3) { background: linear-gradient(145deg, rgba(236,231,250,.9), rgba(255,255,255,.66)); }
.adv-card:nth-child(4) { background: linear-gradient(145deg, rgba(229,245,231,.9), rgba(255,255,255,.66)); }

.app-icon,
.essay-thumb {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  box-shadow: var(--shadow-card), var(--shadow-inset);
}

.app-icon svg,
.essay-thumb svg {
  width: 38px;
  height: 38px;
}

.icon-blue,
.thumb-blue { background: linear-gradient(135deg, #F5FBFF, var(--blue)); }
.icon-lilac,
.thumb-lilac { background: linear-gradient(135deg, #FAF8FF, var(--lilac)); }
.icon-sage,
.thumb-sage { background: linear-gradient(135deg, #F8FFF8, var(--sage)); }
.icon-peach,
.thumb-peach { background: linear-gradient(135deg, #FFF8F5, var(--peach)); }

.adv-card h3 {
  margin-top: 28px;
  font-size: 1.6rem;
}

.daily-dashboard {
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.36));
}

.section-head {
  margin-bottom: 52px;
}

.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered p {
  margin-inline: auto;
  max-width: 640px;
}

.daily-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.daily-item {
  position: relative;
  padding-top: 8px;
}

.daily-item b {
  display: block;
  margin: 28px 0 10px;
  color: #6BAEF7;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -.08em;
}

.daily-item h3 {
  font-size: 1.42rem;
}

.split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.split p {
  max-width: 340px;
  margin-bottom: 6px;
}

.essay-list {
  display: grid;
  gap: 16px;
}

.essay-card {
  display: grid;
  grid-template-columns: 80px 150px 1fr 1.2fr 130px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 34px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.essay-meta {
  color: #6D91C8;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.essay-card strong {
  font-size: 1.18rem;
  letter-spacing: -.04em;
}

.essay-card p {
  margin: 0;
  font-size: .98rem;
}

.essay-card i {
  justify-self: end;
  color: #6683A8;
  font-style: normal;
  font-weight: 850;
}

.cta-card {
  position: relative;
  padding: clamp(54px, 8vw, 92px);
  text-align: center;
  overflow: hidden;
}

.cta-card img {
  width: 128px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 24px 42px rgba(122,183,255,.24));
}

.cta-card p {
  max-width: 620px;
  margin-inline: auto;
}

.centered-actions {
  justify-content: center;
}

.author-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
}

.author-name {
  display: block;
  margin-bottom: 14px;
  color: #657FA5;
}

.soft-link {
  display: inline-flex;
  margin-top: 26px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(220,238,255,.66);
  color: #516D95;
  font-weight: 850;
}

.author-visual img {
  width: min(100%, 360px);
  margin-inline: auto;
  filter: drop-shadow(0 28px 70px rgba(92,119,156,.16));
}

.site-footer {
  padding-top: 84px;
  background:
    radial-gradient(circle at 20% 0%, rgba(183,167,230,.18), transparent 26rem),
    linear-gradient(180deg, #EDF3FB, #E8F0FA);
}

.footer-top {
  text-align: center;
}

.footer-top h2 {
  margin: 18px 0 6px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.footer-top p {
  margin-bottom: 28px;
}

.footer-orb {
  margin-inline: auto;
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 22px;
}

.footer-form {
  max-width: 500px;
  min-height: 58px;
  display: flex;
  gap: 8px;
  margin: 0 auto;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  box-shadow: var(--shadow-inset), var(--shadow-card);
}

.footer-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 18px;
  outline: none;
  background: transparent;
  color: var(--ink);
}

.footer-form button {
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, #5CA9FF, #9C8FE2);
  font-weight: 850;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 76px;
  padding: 34px;
  border-radius: 38px;
  background: rgba(255,255,255,.48);
  box-shadow: var(--shadow-inset);
}

.footer-columns h3 {
  margin: 0 0 16px;
}

.footer-columns a {
  display: block;
  padding: 7px 0;
  color: #667489;
  font-weight: 650;
}

.footer-columns a:hover,
.footer-strip a:hover {
  color: var(--ink);
}

.footer-strip {
  margin-top: 48px;
  background: rgba(31,38,51,.92);
}

.footer-strip-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-strip a {
  color: rgba(255,255,255,.76);
  font-weight: 700;
}

.search-overlay,
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.search-overlay.is-open,
.mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.overlay-backdrop,
.mobile-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(32,36,45,.28);
  backdrop-filter: blur(8px);
}

.search-dialog {
  position: relative;
  width: min(calc(100% - 32px), 720px);
  margin: 16vh auto 0;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-float);
}

.dialog-close,
.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 16px;
  background: rgba(220,238,255,.8);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
}

.search-form {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.search-form input {
  flex: 1;
  min-width: 0;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--bg);
  outline: none;
}

.search-form button {
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(135deg, #5CA9FF, #9C8FE2);
  font-weight: 850;
}

.mobile-drawer {
  position: absolute;
  inset: 12px 12px 12px auto;
  width: min(430px, calc(100% - 24px));
  padding: 22px;
  border-radius: 34px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-float);
  transform: translateX(20px);
  transition: transform .2s ease;
  overflow: auto;
}

.mobile-panel.is-open .mobile-drawer {
  transform: translateX(0);
}

.drawer-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-right: 52px;
  margin-bottom: 24px;
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  display: block;
  padding: 15px 16px;
  border-radius: 20px;
  background: rgba(241,246,253,.74);
  color: #56687F;
  font-weight: 850;
}

.mobile-nav a:hover {
  background: var(--blue-soft);
  color: var(--ink);
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .header-inner {
    justify-content: space-between;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid,
  .value-grid,
  .weton-grid,
  .advantages-grid,
  .author-grid {
    grid-template-columns: 1fr;
  }

  .hero-notes {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-dashboard {
    min-height: auto;
  }

  .hero-dashboard img {
    min-height: 520px;
  }

  .daily-grid,
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .essay-card {
    grid-template-columns: 76px 1fr;
  }

  .essay-meta,
  .essay-card i {
    justify-self: start;
  }

  .essay-card p {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    height: 74px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 3.38rem);
    letter-spacing: -.06em;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.1rem);
  }

  p {
    font-size: 1rem;
  }

  .hero-dashboard,
  .weton-product,
  .author-grid,
  .cta-card {
    border-radius: 34px;
  }

  .hero-dashboard {
    padding: 10px;
  }

  .hero-dashboard img {
    min-height: 360px;
    border-radius: 26px;
  }

  .hero-notes,
  .daily-grid,
  .footer-columns,
  .advantage-cards,
  .product-metrics {
    grid-template-columns: 1fr;
  }

  .weton-product {
    min-height: auto;
    padding: 24px;
  }

  .weton-map {
    width: min(78vw, 280px);
  }

  .split {
    display: block;
  }

  .essay-card {
    padding: 18px;
    grid-template-columns: 64px 1fr;
  }

  .essay-thumb {
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }

  .essay-card strong,
  .essay-card p,
  .essay-card i {
    grid-column: 1 / -1;
  }

  .search-form,
  .footer-form {
    flex-direction: column;
    border-radius: 28px;
    padding: 10px;
  }

  .footer-form input,
  .footer-form button,
  .search-form input,
  .search-form button {
    min-height: 52px;
  }

  .footer-strip-inner {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 18px 0;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
/* ==========================================================
   LUXURY POLISH LAYER
   - dropdown hover bridge
   - glass/neumorphic navbar
   - deeper lux cards
   - soft 3D icons
   - luminous progress cards
   ========================================================== */

body {
  background:
    radial-gradient(circle at 8% 12%, rgba(122,183,255,.22), transparent 30%),
    radial-gradient(circle at 84% 14%, rgba(183,167,230,.20), transparent 29%),
    radial-gradient(circle at 78% 74%, rgba(191,227,196,.22), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(245,201,184,.14), transparent 30%),
    linear-gradient(180deg, #F1F6FD 0%, #EAF2FC 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -12% auto -12%;
  height: 58vh;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.72), transparent 32%),
    radial-gradient(circle at 62% 22%, rgba(220,238,255,.42), transparent 34%),
    radial-gradient(circle at 78% 40%, rgba(236,231,250,.34), transparent 28%);
  filter: blur(10px);
}

.section::before {
  content: "";
  position: absolute;
  inset: -90px 0 auto 0;
  height: 280px;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.58), transparent 66%);
}

h1,
h2,
h3 {
  font-family: var(--font);
  font-weight: 750;
  letter-spacing: -.065em;
}

p,
.note-card small,
.value-labels em,
.footer-columns a {
  color: #8490A2;
}

.eyebrow,
.essay-meta {
  font-size: .72rem;
  letter-spacing: .13em;
  color: #6E97CF;
}

/* NAVBAR LUXURY */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  background:
    linear-gradient(180deg, rgba(246, 250, 255, .86), rgba(246, 250, 255, .62));
  border-bottom: 1px solid rgba(90, 115, 150, .10);
  box-shadow: 0 18px 55px rgba(92,119,156,.07);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.header-inner {
  height: 64px;
  padding-inline: 18px;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,255,255,.58));
  border: 1px solid rgba(255,255,255,.78);
  box-shadow:
    0 18px 55px rgba(92,119,156,.10),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.brand-orb {
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.98), transparent 32%),
    linear-gradient(145deg, #DCEEFF, #B7A7E6 54%, #BFE3C4);
  box-shadow:
    0 14px 30px rgba(92,119,156,.18),
    inset 0 2px 4px rgba(255,255,255,.86),
    inset 0 -9px 18px rgba(80,100,130,.08);
}

.nav-shell {
  margin-left: auto;
  padding: 7px;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.68), rgba(255,255,255,.38));
  border: 1px solid rgba(255,255,255,.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 12px 28px rgba(92,119,156,.08);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #344052;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  background: transparent;
  transition:
    background .22s ease,
    color .22s ease,
    transform .22s ease,
    box-shadow .22s ease;
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  color: #1F2633;
  background: rgba(255,255,255,.78);
  box-shadow:
    0 10px 24px rgba(92,119,156,.10),
    inset 0 1px 0 rgba(255,255,255,.9);
  transform: translateY(-1px);
}

.nav-link.is-active {
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.95), transparent 34%),
    linear-gradient(145deg, #DCEEFF, rgba(236,231,250,.74));
  color: #243A5A;
  box-shadow:
    0 12px 28px rgba(122,183,255,.18),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  top: 100%;
  height: 22px;
  background: transparent;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 292px;
  padding: 14px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.96), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(246,250,255,.82));
  border: 1px solid rgba(255,255,255,.82);
  box-shadow:
    0 28px 80px rgba(92,119,156,.18),
    0 8px 24px rgba(92,119,156,.08),
    inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px) scale(.98);
  pointer-events: none;
  transition:
    opacity .22s ease,
    visibility .22s ease,
    transform .22s ease;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown,
.nav-item.has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.nav-dropdown a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  color: #354156;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition:
    background .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(220, 238, 255, .72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  transform: translateX(3px);
}

.nav-dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
}

/* Keep compatibility with old dropdown class names */
.dropdown-panel {
  display: block;
}

/* LUXURY CARD DEPTH */
.lux-card,
.soft-card {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.95), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.90), rgba(255,255,255,.58));
  border: 1px solid rgba(255,255,255,.76);
  box-shadow:
    0 28px 80px rgba(92,119,156,.16),
    0 8px 24px rgba(92,119,156,.08),
    inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lux-card::before,
.soft-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), transparent 36%);
  opacity: .74;
  z-index: 0;
}

.lux-card::after,
.soft-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -74px;
  bottom: -74px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(122,183,255,.24), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.lux-card > *,
.soft-card > * {
  position: relative;
  z-index: 1;
}

.hero-dashboard,
.weton-product,
.cta-card,
.author-grid {
  box-shadow:
    0 34px 92px rgba(92,119,156,.18),
    0 10px 30px rgba(92,119,156,.08),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.note-card,
.adv-card,
.essay-card,
.value-labels div {
  background:
    radial-gradient(circle at 22% 12%, rgba(255,255,255,.94), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.48));
  border: 1px solid rgba(255,255,255,.70);
  box-shadow:
    0 20px 52px rgba(92,119,156,.12),
    0 6px 18px rgba(92,119,156,.06),
    inset 0 1px 0 rgba(255,255,255,.92);
}

/* SOFT 3D ICONS */
.soft-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.92), transparent 30%),
    linear-gradient(145deg, #DCEEFF, #ECE7FA 55%, #FBE9E2);
  box-shadow:
    0 18px 34px rgba(92,119,156,.18),
    inset 0 2px 4px rgba(255,255,255,.85),
    inset 0 -8px 18px rgba(80,100,130,.08);
}

.soft-icon svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 5px 8px rgba(80,100,130,.10));
}

.soft-icon--sage,
.icon-sage,
.thumb-sage,
.note-icon-sage {
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.92), transparent 30%),
    linear-gradient(145deg, #E5F5E7, #BFE3C4);
}

.soft-icon--peach,
.icon-peach,
.thumb-peach {
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.92), transparent 30%),
    linear-gradient(145deg, #FBE9E2, #F5C9B8);
}

.soft-icon--lilac,
.icon-lilac,
.thumb-lilac,
.note-icon-lilac {
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.92), transparent 30%),
    linear-gradient(145deg, #ECE7FA, #B7A7E6);
}

.icon-blue,
.thumb-blue,
.note-icon-blue {
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.92), transparent 30%),
    linear-gradient(145deg, #DCEEFF, #7AB7FF);
}

.note-icon {
  width: 54px;
  height: 54px;
}

/* PROGRESS CARDS POLISH */
.progress-card {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.78);
  box-shadow:
    0 18px 45px rgba(92,119,156,.12),
    0 6px 16px rgba(92,119,156,.06),
    inset 0 1px 0 rgba(255,255,255,.95);
  transition:
    transform .22s ease,
    box-shadow .22s ease;
}

.progress-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 26px 66px rgba(92,119,156,.16),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.progress-card--blue {
  background:
    radial-gradient(circle at 20% 14%, rgba(255,255,255,.88), transparent 30%),
    linear-gradient(145deg, rgba(220,238,255,.92), rgba(255,255,255,.62));
}

.progress-card--lilac {
  background:
    radial-gradient(circle at 20% 14%, rgba(255,255,255,.88), transparent 30%),
    linear-gradient(145deg, rgba(236,231,250,.92), rgba(255,255,255,.62));
}

.progress-card--peach {
  background:
    radial-gradient(circle at 20% 14%, rgba(255,255,255,.88), transparent 30%),
    linear-gradient(145deg, rgba(251,233,226,.92), rgba(255,255,255,.62));
}

.progress-card--sage {
  background:
    radial-gradient(circle at 20% 14%, rgba(255,255,255,.88), transparent 30%),
    linear-gradient(145deg, rgba(229,245,231,.92), rgba(255,255,255,.62));
}

.progress-card span:first-child {
  color: #46556B;
  font-weight: 800;
}

.progress-track {
  height: 10px;
  display: block;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 1px 2px rgba(80,100,130,.08);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #7AB7FF, #B7A7E6);
  box-shadow:
    0 0 18px rgba(122,183,255,.45),
    inset 0 1px 0 rgba(255,255,255,.65);
}

.progress-card--peach .progress-fill {
  background: linear-gradient(90deg, #F5C9B8, #D7BE83);
  box-shadow: 0 0 18px rgba(245,201,184,.42);
}

.progress-card--sage .progress-fill {
  background: linear-gradient(90deg, #BFE3C4, #7AB7FF);
  box-shadow: 0 0 18px rgba(191,227,196,.44);
}

@media (max-width: 1180px) {
  .nav-shell {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 0;
  }

  .header-inner {
    width: min(calc(100% - 28px), var(--container));
    height: 60px;
    padding-inline: 12px;
  }

  .lux-card,
  .soft-card {
    border-radius: 32px;
  }
}
