:root {
  --canvas: #f5f0e8;
  --surface: #fffaf5;
  --ink: #2b241e;
  --body: #4d443b;
  --muted: #7c7064;
  --line: #e7ddd0;
  --teal: #2b8a94;
  --blue: #1690d3;
  --orange: #f08a33;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/Manrope-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html { background: var(--canvas); }

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 10% -5%, #fff9ed 0, transparent 31rem), var(--canvas);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

main { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

nav {
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); text-decoration: none; }
/* Match the Owovi Console header exactly: a circular 36px mark and 23px wordmark. */
.brand img { width: 36px; height: 36px; border-radius: 50%; }
.brand span { font-family: "Manrope", "Avenir Next", sans-serif; font-size: 23px; font-weight: 800; letter-spacing: -.026em; }
.brand b { color: var(--orange); font-style: normal; }
.brand i { color: var(--blue); font-style: normal; }

.console-link { color: var(--teal); font-weight: 700; text-decoration: none; font-size: 15px; }
.console-link:hover, .console-link:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

.hero {
  isolation: isolate;
  overflow: hidden;
  position: relative;
  min-height: 610px;
  margin: 44px 0 28px;
  padding: 72px 8% 68px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: linear-gradient(155deg, #fffdfa 3%, #f9f2e6 96%);
  box-shadow: 0 28px 65px rgba(60, 42, 22, .10);
}

.hero-content { position: relative; z-index: 2; max-width: 750px; }
.hero-mark { width: 128px; height: 128px; border-radius: 36px; box-shadow: 0 18px 35px rgba(48, 57, 51, .12); }
.eyebrow { margin: 22px 0 16px; color: var(--muted); font-family: Georgia, serif; font-style: italic; font-size: clamp(19px, 2.2vw, 25px); }
h1 { max-width: 700px; margin: 0 auto; font-size: clamp(43px, 6.2vw, 74px); line-height: 1.03; letter-spacing: -.055em; }
.intro { max-width: 620px; margin: 25px auto 30px; color: var(--body); font-size: clamp(18px, 2.1vw, 22px); }

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 15px 23px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 22px rgba(43, 138, 148, .27);
  font-weight: 750;
  text-decoration: none;
}
.primary-button:hover, .primary-button:focus-visible { background: #20747c; transform: translateY(-1px); }
.quiet-note { color: var(--muted); font-size: 13px; margin: 16px 0 0; }

.sun-wash { position: absolute; z-index: 0; width: 310px; height: 310px; top: -108px; right: -62px; border-radius: 50%; background: radial-gradient(circle at 46% 48%, #ffc766, #f4973d 62%, #e67338); opacity: .88; }
.wave { position: absolute; z-index: 1; border-radius: 50% 50% 0 0; transform: rotate(-5deg); opacity: .5; }
.wave-one { width: 76%; height: 260px; bottom: -178px; left: -9%; background: #76c2c6; }
.wave-two { width: 80%; height: 245px; bottom: -191px; right: -13%; background: #acdce0; transform: rotate(7deg); }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0 0 66px; }
.principles article { min-height: 205px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 252, 248, .72); }
.number { color: var(--teal); font-size: 13px; font-weight: 800; letter-spacing: .1em; }
h2 { margin: 12px 0 8px; font-size: 21px; line-height: 1.15; letter-spacing: -.02em; }
.principles p { margin: 0; color: var(--body); font-size: 15px; }

footer { max-width: 1280px; margin: 0 auto; padding: 24px 28px 36px; display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }
footer a { color: inherit; }

@media (max-width: 720px) {
  main { padding: 0 16px; }
  nav { min-height: 74px; }
  .brand img { width: 36px; height: 36px; }
  .brand span { font-size: 23px; }
  .console-link { font-size: 13px; }
  .hero { min-height: 560px; margin: 22px 0 20px; padding: 54px 24px 55px; border-radius: 30px; }
  .hero-mark { width: 108px; height: 108px; border-radius: 30px; }
  .sun-wash { width: 210px; height: 210px; top: -75px; right: -65px; }
  .principles { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; }
  .principles article { min-height: 0; padding: 23px; }
  footer { padding: 22px 16px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
