/*
Theme Name: OddBox Whimsy
Theme URI: https://example.com/
Author: OddBox
Description: Whimsical single-page theme for OddBox pilot.
Version: 1.0.0
Text Domain: oddbox
*/

:root {
  --ink: #1b1b1b;
  --ink-2: #2c2c2c;
  --paper: #fbf9ff;
  --lavender: #6b3ff2;
  --lavender-dark: #4b24c4;
  --neon: #62ff3d;
  --neon-soft: #d7ffcf;
  --card: #ffffff;
  --line: rgba(107, 63, 242, 0.25);
  --shadow: 0 12px 30px rgba(36, 18, 78, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #f1ecff 0%, var(--paper) 45%, #eefdf3 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lavender), #9b7bff);
  position: relative;
  box-shadow: var(--shadow);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  right: -6px;
  bottom: -6px;
  background: var(--neon);
  border: 2px solid #fff;
}

.hero {
  padding: 64px 0 40px;
  display: grid;
  gap: 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-copy p {
  font-size: 1.1rem;
  margin: 0 0 26px;
  color: var(--ink-2);
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--lavender);
  color: #fff;
  box-shadow: var(--shadow);
}

.button.secondary {
  border-color: var(--lavender);
  color: var(--lavender-dark);
  background: #fff;
}

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

.hero-visual {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px dashed rgba(107, 63, 242, 0.4);
}

.hero-visual .bubble {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(98, 255, 61, 0.18);
  top: -30px;
  right: -20px;
}

.hero-visual h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  color: var(--lavender-dark);
}

.hero-visual ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.section {
  padding: 48px 0;
}

.section h2 {
  font-family: "Fraunces", serif;
  color: var(--lavender-dark);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.section p {
  margin: 0 0 14px;
  color: var(--ink-2);
}

.section .lead {
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  font-weight: 600;
  color: var(--lavender-dark);
}

.listing {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.listing li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.how-steps {
  display: grid;
  gap: 16px;
}

.step {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.step span {
  font-weight: 700;
  color: var(--lavender-dark);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid #f0ebff;
}

.card .accent {
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: var(--neon);
  margin-bottom: 12px;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--lavender-dark);
}

.placeholder {
  height: 140px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f5f2ff, #e7fff0);
  border: 1px dashed rgba(107, 63, 242, 0.4);
  display: grid;
  place-items: center;
  color: #6f5da8;
  font-weight: 600;
}

.about {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-wrap {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 12px;
}

input, textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7cff7;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

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

.notice {
  padding: 12px 14px;
  border-radius: 12px;
  background: #f0fff0;
  border: 1px solid #b8f2b0;
  color: #2c6d2a;
  font-weight: 600;
}

.notice.error {
  background: #fff1f3;
  border-color: #ffb2c1;
  color: #8d1d34;
}

.site-footer {
  padding: 30px 0 50px;
  color: #544e6b;
  text-align: center;
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .hero {
    padding-top: 32px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .button {
    width: 100%;
  }
}
