:root {
  color-scheme: light;
  --ink: #102447;
  --ink-soft: #52617d;
  --line: #c9cee2;
  --lavender: #eef0ff;
  --paper: #ffffff;
  --paper-blue: #f8f9ff;
  --berry: #e64772;
  --berry-dark: #c72f5b;
  --mint: #aee8cf;
  --mint-dark: #26765a;
  --lemon: #ffd866;
  --sky: #c9e4ff;
  --night: #17223e;
  --shadow: 0 20px 55px rgba(31, 42, 86, 0.13);
  --radius-large: 28px;
  --radius-medium: 18px;
  --display: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, sans-serif;
  --body: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --utility: ui-monospace, "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--lavender);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(circle at 12% 14%, rgba(255, 216, 102, 0.2), transparent 25%), radial-gradient(circle at 88% 30%, rgba(174, 232, 207, 0.22), transparent 22%);
  content: "";
  pointer-events: none;
}

body.is-dialog-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--berry);
  outline-offset: 3px;
}

::selection {
  background: var(--lemon);
  color: var(--ink);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h1 {
  max-width: 910px;
  margin-bottom: 0;
  font-size: clamp(2.75rem, 6.2vw, 6.6rem);
  font-weight: 800;
}

h1 em {
  position: relative;
  color: var(--berry-dark);
  font-style: normal;
  white-space: nowrap;
}

h1 em::after {
  position: absolute;
  right: 0;
  bottom: -0.07em;
  left: 0;
  height: 0.12em;
  border-radius: 999px;
  background: var(--lemon);
  content: "";
  transform: rotate(-1.2deg);
}

h2 {
  margin-bottom: 0.6em;
  font-size: clamp(2rem, 4.4vw, 4.35rem);
}

h3 {
  font-size: 1.45rem;
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(16, 36, 71, 0.13);
  background: rgba(238, 240, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
  filter: drop-shadow(0 3px 0 rgba(16, 36, 71, 0.12));
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 34px;
}

.site-nav a,
.site-footer nav a {
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-footer nav a:hover {
  color: var(--berry-dark);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:active:not(:disabled) {
  transform: translateY(0);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.button-primary {
  border-color: var(--berry-dark);
  background: var(--berry);
  box-shadow: 0 6px 0 var(--berry-dark);
  color: white;
}

.button-primary:hover:not(:disabled) {
  box-shadow: 0 8px 0 var(--berry-dark);
}

.button-ink {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.button-quiet {
  background: white;
}

.button-wide {
  width: 100%;
}

.maker-hero {
  width: min(1500px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 100px) 0 74px;
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(32px, 6vw, 90px);
  margin-bottom: clamp(40px, 6vw, 72px);
}

.eyebrow,
.utility-label {
  color: var(--berry-dark);
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 8px;
  color: var(--mint-dark);
}

.hero-sidecopy {
  padding-bottom: 10px;
}

.hero-sidecopy > p {
  margin-bottom: 22px;
  color: #344565;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badges span {
  padding: 6px 10px;
  border: 1px solid rgba(16, 36, 71, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-family: var(--utility);
  font-size: 0.67rem;
  font-weight: 700;
}

.maker-board {
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-large);
  background: var(--paper);
  box-shadow: 10px 12px 0 rgba(16, 36, 71, 0.96), var(--shadow);
}

.maker-ribbon {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: clamp(18px, 4vw, 54px);
  padding: 12px clamp(18px, 3vw, 38px);
  border-bottom: 1.5px solid var(--ink);
  background: var(--sky);
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.maker-ribbon span {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.56;
}

.maker-ribbon span.is-current,
.maker-ribbon .draft-status {
  opacity: 1;
}

.maker-ribbon b {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: white;
}

.maker-ribbon .draft-status {
  margin-left: auto;
  color: var(--mint-dark);
  font-size: 0.64rem;
  text-transform: none;
}

.maker-ribbon .draft-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.maker-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.22fr);
}

.address-sheet,
.goodie-sheet {
  padding: clamp(28px, 3vw, 48px);
}

.address-sheet {
  border-right: 1.5px solid var(--ink);
  background-color: var(--paper-blue);
  background-image: linear-gradient(rgba(16, 36, 71, 0.04) 1px, transparent 1px);
  background-size: 100% 34px;
}

.goodie-sheet {
  display: flex;
  min-height: 720px;
  flex-direction: column;
}

.section-heading {
  margin-bottom: 27px;
}

.section-heading .utility-label {
  margin-bottom: 8px;
}

.section-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.75rem, 2.6vw, 2.7rem);
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.goodie-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.goodie-heading h2 {
  margin-bottom: 0;
}

.item-count {
  flex: 0 0 auto;
  margin-bottom: 4px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--lavender);
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.two-up {
  grid-template-columns: 1fr 1fr;
}

label,
fieldset {
  min-width: 0;
}

.form-grid label,
.field-block,
.share-result label,
.dialog-fields > label {
  display: grid;
  gap: 7px;
}

label > span,
.theme-fieldset legend,
.share-result label > span,
.dialog-fields label > span {
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1.25px solid #aeb7ce;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

input,
select {
  min-height: 50px;
  padding: 10px 14px;
}

textarea {
  min-height: 108px;
  padding: 13px 14px;
  line-height: 1.5;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 4px rgba(230, 71, 114, 0.11);
  outline: none;
}

.field-block {
  position: relative;
  margin-top: 18px;
}

.field-block small {
  position: absolute;
  right: 12px;
  bottom: 9px;
  padding: 2px 5px;
  background: white;
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.61rem;
}

.compact-fields {
  align-items: end;
  margin-top: 18px;
}

.theme-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.theme-fieldset legend {
  margin-bottom: 7px;
}

.theme-picker {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1.25px solid #aeb7ce;
  border-radius: 14px;
  background: white;
}

.theme-picker label {
  cursor: pointer;
}

.theme-picker input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.theme-dot {
  display: block;
  width: 27px;
  height: 27px;
  overflow: hidden;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #aeb7ce;
  color: transparent;
  font-size: 0;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.theme-picker input:checked + .theme-dot {
  box-shadow: 0 0 0 2px var(--ink);
  transform: scale(1.08);
}

.theme-picker input:focus-visible + .theme-dot {
  outline: 3px solid var(--berry);
  outline-offset: 3px;
}

.theme-berry { background: var(--berry); }
.theme-sunny { background: var(--lemon); }
.theme-mint { background: var(--mint); }
.theme-night { background: var(--night); }

.privacy-note,
.ready-note {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed #9ba6c0;
}

.privacy-note p,
.ready-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.55;
}

.privacy-icon,
.ready-note > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-weight: 900;
}

.goodie-picker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
}

.goodie-picker button {
  display: grid;
  min-height: 108px;
  align-content: center;
  justify-items: start;
  gap: 3px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfbff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.goodie-picker button:nth-child(3n + 1):hover { background: #fff0f4; }
.goodie-picker button:nth-child(3n + 2):hover { background: #effaf5; }
.goodie-picker button:nth-child(3n):hover { background: #fff9df; }

.goodie-picker button:hover:not(:disabled) {
  border-color: var(--ink);
  transform: translateY(-3px) rotate(-0.5deg);
}

.goodie-picker button:disabled {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.42;
}

.goodie-picker button > span {
  margin-bottom: 6px;
  color: var(--berry-dark);
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1;
}

.goodie-picker b {
  font-size: 0.82rem;
  line-height: 1.2;
}

.goodie-picker small {
  color: var(--ink-soft);
  font-size: 0.65rem;
  line-height: 1.25;
}

.inside-tray {
  position: relative;
  min-height: 186px;
  margin-top: 22px;
  padding: 16px;
  border: 1.5px dashed #9ea8c0;
  border-radius: 18px;
  background: #fafaff;
}

.empty-tray {
  display: flex;
  min-height: 152px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--ink-soft);
  text-align: left;
}

.empty-tray[hidden] {
  display: none;
}

.empty-tray p {
  max-width: 340px;
  margin: 3px 0 0;
  font-size: 0.86rem;
}

.empty-scribble {
  color: var(--berry);
  font-size: 2.1rem;
}

.packed-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.packed-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 8px 9px 8px 12px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--item-color, var(--berry));
  border-radius: 12px;
  background: white;
}

.packed-index {
  color: var(--ink-soft);
  font-family: var(--utility);
  font-size: 0.65rem;
}

.packed-copy {
  min-width: 0;
}

.packed-copy strong,
.packed-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.packed-copy strong {
  font-size: 0.86rem;
}

.packed-copy small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.packed-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.packed-actions button {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 0.77rem;
}

.packed-actions button:hover:not(:disabled) {
  background: var(--lavender);
}

.packed-actions button:disabled {
  cursor: default;
  opacity: 0.25;
}

.packed-actions .delete-item:hover {
  background: #ffe8ee;
  color: #9d183f;
}

.maker-actions {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr);
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}

.maker-error,
.dialog-error,
.share-status {
  min-height: 1.45em;
  margin: 13px 0 0;
  color: #a01c43;
  font-size: 0.82rem;
  font-weight: 700;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1.5px solid var(--ink);
  background: var(--lemon);
}

.promise-strip p {
  position: relative;
  display: grid;
  min-height: 126px;
  align-content: center;
  margin: 0;
  padding: 23px clamp(18px, 3vw, 46px) 23px 60px;
  border-right: 1px solid rgba(16, 36, 71, 0.6);
}

.promise-strip p:last-child {
  border-right: 0;
}

.promise-strip span {
  position: absolute;
  top: 27px;
  left: 24px;
  font-family: var(--utility);
  font-size: 0.65rem;
}

.promise-strip strong,
.promise-strip small {
  display: block;
}

.promise-strip strong {
  font-family: var(--display);
  font-size: 1rem;
}

.promise-strip small {
  margin-top: 3px;
  color: #4b4c45;
  font-size: 0.76rem;
}

.story-section,
.ideas-section,
.alternative-section,
.faq-section,
.sent-hugs-section,
.final-cta {
  width: min(1320px, calc(100% - 36px));
  margin-inline: auto;
}

.story-section {
  padding: clamp(90px, 11vw, 160px) 0;
}

.section-kicker {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 62px;
}

.section-kicker h2 {
  max-width: 980px;
  margin: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1.5px solid var(--ink);
}

.steps-grid article {
  padding: 30px clamp(24px, 3vw, 42px) 10px 0;
  border-right: 1px solid var(--line);
}

.steps-grid article + article {
  padding-left: clamp(24px, 3vw, 42px);
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid span {
  font-family: var(--utility);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps-grid h3 {
  margin: 26px 0 18px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.steps-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.ideas-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
  padding: 48px clamp(28px, 6vw, 85px);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-large);
  background: var(--ink);
  box-shadow: 8px 9px 0 var(--berry);
  color: white;
}

.ideas-copy .eyebrow {
  color: var(--lemon);
}

.ideas-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.3rem);
}

.ideas-copy > p:not(.eyebrow) {
  color: #cbd5e8;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--lemon);
  font-weight: 800;
}

.idea-stack {
  display: grid;
  gap: 13px;
  perspective: 1000px;
}

.idea-card {
  padding: 24px 26px;
  border: 1.5px solid var(--ink);
  border-radius: 17px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.24);
  color: var(--ink);
  transition: transform 220ms ease;
}

.idea-card:hover {
  transform: translateX(-7px) rotate(-0.4deg);
}

.idea-card span,
.idea-card small {
  font-family: var(--utility);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.idea-card h3 {
  margin: 12px 0 16px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.idea-blue { background: var(--sky); transform: rotate(0.8deg); }
.idea-yellow { background: var(--lemon); transform: rotate(-0.8deg); }
.idea-mint { background: var(--mint); transform: rotate(0.35deg); }

.alternative-section {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
  padding: clamp(100px, 13vw, 180px) 0;
}

.alternative-section > div:last-child {
  max-width: 850px;
}

.alternative-section h2 {
  font-size: clamp(2.5rem, 5vw, 5.2rem);
}

.alternative-section p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.alternative-mark {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-content: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 11px 13px 0 var(--ink);
  text-align: center;
  transform: rotate(-6deg);
}

.alternative-mark span,
.alternative-mark b {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.88;
}

.alternative-mark b {
  color: var(--berry-dark);
}

.alternative-mark i {
  margin-top: 22px;
  font-family: var(--utility);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.independence-note {
  padding: 14px 18px;
  border-left: 4px solid var(--berry);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem !important;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(70px, 8vw, 115px) clamp(26px, 6vw, 86px);
  border-radius: var(--radius-large);
  background: white;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro p:last-child {
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1.5px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--body);
  font-weight: 500;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 730px;
  margin: -5px 45px 26px 0;
  color: var(--ink-soft);
}

.sent-hugs-section {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: clamp(40px, 7vw, 100px);
  padding: 110px 0 20px;
}

.sent-hugs-list {
  display: grid;
  gap: 12px;
}

.sent-hug {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.sent-hug strong,
.sent-hug small {
  display: block;
}

.sent-hug small {
  margin-top: 4px;
  color: var(--ink-soft);
}

.sent-hug-actions {
  display: flex;
  gap: 7px;
}

.sent-hug-actions button,
.sent-hug-actions a {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.75rem;
}

.delete-hug {
  color: #9d183f;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 80px;
  align-items: center;
  margin-top: clamp(90px, 12vw, 170px);
  margin-bottom: 90px;
  padding: clamp(45px, 7vw, 85px);
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-large);
  background: var(--sky);
  box-shadow: 9px 10px 0 var(--ink);
}

.final-cta h2 {
  max-width: 850px;
}

.cta-fold {
  position: relative;
  display: grid;
  aspect-ratio: 1.2;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  background: white;
  box-shadow: 0 12px 0 rgba(16, 36, 71, 0.14);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  transform: rotate(-4deg);
}

.cta-fold::before,
.cta-fold::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58%;
  content: "";
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.cta-fold::before {
  background: var(--mint);
}

.cta-fold::after {
  height: 53%;
  background: white;
  clip-path: polygon(0 100%, 50% 7%, 100% 100%);
}

.cta-fold span {
  z-index: 2;
  align-self: start;
  margin-top: 18%;
}

.cta-fold i {
  z-index: 3;
  align-self: end;
  margin-bottom: 12%;
  color: var(--berry-dark);
  font-family: var(--utility);
  font-size: 0.65rem;
  font-style: normal;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr auto;
  align-items: center;
  gap: 30px;
  padding: 50px clamp(20px, 5vw, 78px) 28px;
  border-top: 1.5px solid var(--ink);
  background: var(--ink);
  color: white;
}

.footer-brand {
  color: white;
}

.footer-brand .brand-copy small,
.site-footer > p {
  color: #b9c4da;
}

.site-footer > p {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  gap: 23px;
}

.site-footer > small {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #8796b5;
  font-family: var(--utility);
  font-size: 0.64rem;
}

dialog {
  width: min(100% - 24px, 740px);
  max-height: calc(100dvh - 30px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  background: white;
  box-shadow: 10px 12px 0 var(--ink), 0 24px 80px rgba(0, 0, 0, 0.28);
}

dialog::backdrop {
  background: rgba(16, 25, 50, 0.66);
  backdrop-filter: blur(4px);
}

.preview-dialog,
.share-dialog {
  width: min(100% - 24px, 1180px);
}

.dialog-shell,
.share-shell {
  padding: clamp(22px, 4vw, 42px);
}

.preview-shell {
  min-height: 80vh;
  background: var(--lavender);
}

.dialog-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.dialog-topline .utility-label {
  margin-bottom: 7px;
}

.dialog-topline h2 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}

.preview-topline {
  margin: 0;
  padding: 20px 24px;
  border-bottom: 1.5px solid var(--ink);
  background: white;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.icon-button:hover {
  background: var(--lemon);
  transform: rotate(4deg);
}

.dialog-fields {
  display: grid;
  gap: 18px;
}

.dialog-fields .helper {
  margin: -10px 0 0;
  color: var(--ink-soft);
  font-size: 0.77rem;
}

.dialog-fields .file-drop {
  position: relative;
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 20px;
  border: 1.5px dashed #8f9ab6;
  border-radius: 16px;
  background: var(--paper-blue);
  text-align: center;
}

.dialog-fields .file-drop input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.dialog-fields .file-drop strong,
.dialog-fields .file-drop small {
  display: block;
}

.dialog-fields .file-drop small {
  margin-top: 5px;
  color: var(--ink-soft);
}

.media-preview {
  display: grid;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.media-preview img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  border-radius: 9px;
  background: var(--lavender);
}

.media-preview audio {
  width: 100%;
}

.record-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.record-status {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.drawing-board {
  display: grid;
  gap: 10px;
}

.drawing-board canvas {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  background: white;
  cursor: crosshair;
  touch-action: none;
}

.drawing-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.drawing-tools input[type="color"] {
  width: 44px;
  min-height: 40px;
  padding: 4px;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 25px;
}

.share-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 34px;
}

.share-grid > section {
  display: grid;
  align-content: start;
}

.ready-note {
  margin: 0 0 26px;
  padding: 16px;
  border: 1px solid #88c7aa;
  border-radius: 15px;
  background: #effbf5;
}

.ready-note strong {
  display: block;
  margin-bottom: 3px;
}

.share-result {
  display: grid;
  gap: 13px;
  margin-top: 20px;
  padding: 18px;
  border: 1.5px solid var(--ink);
  border-radius: 17px;
  background: var(--sky);
}

.share-result[hidden] {
  display: none;
}

.share-result input {
  background: white;
  font-family: var(--utility);
  font-size: 0.76rem;
}

.share-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.share-result-actions .button {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.8rem;
}

.share-result > p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.support-card {
  position: relative;
  padding: 28px;
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  background: var(--lemon);
  box-shadow: 6px 7px 0 var(--ink);
}

.support-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.support-card > p:not(.utility-label) {
  color: #4c4a3d;
  font-size: 0.87rem;
}

.support-card > small {
  display: block;
  margin-top: 12px;
  color: #5b594b;
  font-size: 0.67rem;
}

.support-sticker {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 5px 10px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: white;
  font-family: var(--utility);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(3deg);
}

#paypal-container-JRSDRPC55ZS9E {
  min-height: 44px;
  margin-top: 18px;
}

.recipient-stage {
  --wrap: var(--berry);
  --wrap-soft: #ffe8ee;
  --wrap-ink: var(--ink);
  min-height: 650px;
  padding: clamp(24px, 6vw, 68px);
  background-color: var(--wrap-soft);
  background-image: radial-gradient(circle at 8% 18%, rgba(255,255,255,.7) 0 3px, transparent 4px), radial-gradient(circle at 82% 38%, rgba(255,255,255,.5) 0 4px, transparent 5px);
  background-size: 80px 80px, 110px 110px;
  color: var(--wrap-ink);
}

.recipient-stage.theme-sunny { --wrap: #f1b900; --wrap-soft: #fff5c4; --wrap-ink: #342e1d; }
.recipient-stage.theme-mint { --wrap: #54c69a; --wrap-soft: #e5faef; --wrap-ink: #143d32; }
.recipient-stage.theme-night { --wrap: #2d467c; --wrap-soft: #17223e; --wrap-ink: #f6f7ff; }

.recipient-wrap {
  width: min(760px, 100%);
  margin-inline: auto;
}

.sealed-note {
  position: relative;
  min-height: 430px;
  padding: clamp(28px, 6vw, 60px);
  overflow: hidden;
  border: 1.5px solid var(--wrap-ink);
  border-radius: 24px;
  background: white;
  box-shadow: 10px 12px 0 var(--wrap-ink);
  color: var(--ink);
  text-align: center;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1), opacity 350ms ease;
}

.sealed-note::before,
.sealed-note::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48%;
  content: "";
  pointer-events: none;
}

.sealed-note::before {
  border-top: 1.5px solid var(--wrap-ink);
  background: var(--wrap);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.sealed-note::after {
  height: 43%;
  background: white;
  clip-path: polygon(0 100%, 50% 7%, 100% 100%);
}

.sealed-note.is-opening {
  opacity: 0;
  transform: translateY(-15px) rotate(-2deg) scale(0.97);
}

.sealed-note .to-line,
.recipient-header .to-line {
  font-family: var(--utility);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sealed-note h2 {
  max-width: 540px;
  margin: 28px auto 17px;
  font-size: clamp(2.3rem, 7vw, 4.6rem);
}

.sealed-note .cover-message {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
  white-space: pre-wrap;
}

.open-package {
  position: relative;
  z-index: 3;
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.recipient-unwrapped {
  display: none;
  animation: arrive 520ms ease both;
}

.recipient-unwrapped.is-visible {
  display: block;
}

.recipient-header {
  margin-bottom: 28px;
  padding: clamp(26px, 5vw, 48px);
  border: 1.5px solid var(--wrap-ink);
  border-radius: 22px;
  background: white;
  box-shadow: 7px 8px 0 var(--wrap-ink);
  color: var(--ink);
  text-align: center;
}

.recipient-header h2 {
  margin: 17px 0 13px;
  font-size: clamp(2.1rem, 6vw, 4rem);
}

.recipient-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-soft);
  white-space: pre-wrap;
}

.goodie-reveal-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recipient-goodie {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--wrap-ink);
  border-radius: 19px;
  background: white;
  box-shadow: 5px 6px 0 var(--wrap-ink);
  color: var(--ink);
}

.goodie-cover {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  min-height: 94px;
  padding: 18px 20px;
  background: var(--ticket, var(--sky));
}

.goodie-number {
  font-family: var(--utility);
  font-size: 0.66rem;
  font-weight: 800;
}

.goodie-cover strong,
.goodie-cover small {
  display: block;
}

.goodie-cover strong {
  font-family: var(--display);
  font-size: 1.15rem;
}

.goodie-cover small {
  margin-top: 2px;
  color: var(--ink-soft);
}

.open-goodie {
  min-width: 85px;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: white;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
}

.goodie-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms ease;
}

.goodie-content > div {
  overflow: hidden;
}

.goodie-content-inner {
  padding: 0 22px;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 220ms ease, transform 220ms ease, padding 320ms ease;
}

.recipient-goodie.is-open .goodie-content {
  grid-template-rows: 1fr;
}

.recipient-goodie.is-open .goodie-content-inner {
  padding: 24px 22px 26px;
  opacity: 1;
  transform: none;
}

.recipient-goodie.is-open .open-goodie {
  background: var(--ink);
  color: white;
}

.goodie-content-inner > p {
  margin-bottom: 0;
  white-space: pre-wrap;
}

.goodie-content-inner img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 13px;
  background: var(--lavender);
}

.goodie-content-inner img + p,
.goodie-content-inner audio + p {
  margin-top: 15px;
}

.goodie-content-inner audio {
  width: 100%;
}

.keepsake-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-blue);
  font-weight: 800;
  text-decoration: none;
}

.keepsake-link:hover {
  border-color: var(--ink);
  background: var(--lemon);
}

.recipient-signoff {
  margin: 38px 0 0;
  color: currentColor;
  font-family: var(--utility);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.package-mode .site-header,
.package-mode .site-footer {
  display: none;
}

.package-mode main {
  min-height: 100dvh;
}

.package-page .recipient-stage {
  display: grid;
  min-height: 100dvh;
  align-items: center;
}

.package-corner-brand {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px 7px 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.package-corner-brand img {
  width: 28px;
  height: 28px;
}

.package-error {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.package-error > div {
  max-width: 560px;
  padding: 46px;
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  background: white;
  box-shadow: 8px 9px 0 var(--ink);
}

.package-error span {
  display: block;
  margin-bottom: 14px;
  font-size: 3rem;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 18px;
  border: 1.5px solid white;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

.noscript {
  position: fixed;
  z-index: 500;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 20px;
  background: #8b1739;
  color: white;
  text-align: center;
}

.legal-page {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0 120px;
}

.legal-page h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.legal-page h2 {
  margin-top: 55px;
  font-size: 1.8rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.legal-page .legal-date {
  font-family: var(--utility);
  font-size: .75rem;
}

@keyframes arrive {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .maker-grid {
    grid-template-columns: 1fr;
  }

  .address-sheet {
    border-right: 0;
    border-bottom: 1.5px solid var(--ink);
  }

  .goodie-sheet {
    min-height: 650px;
  }

  .goodie-picker {
    grid-template-columns: repeat(5, 1fr);
  }

  .promise-strip {
    grid-template-columns: 1fr 1fr;
  }

  .promise-strip p:nth-child(2) {
    border-right: 0;
  }

  .promise-strip p:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 36, 71, 0.6);
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .site-header .button-small {
    min-height: 39px;
    padding: 9px 13px;
    font-size: .8rem;
  }

  .maker-hero {
    width: min(100% - 22px, 1500px);
    padding-top: 38px;
  }

  .hero-intro {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 35px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.8rem);
  }

  h1 em {
    white-space: normal;
  }

  .maker-board {
    border-radius: 20px;
    box-shadow: 5px 7px 0 var(--ink), var(--shadow);
  }

  .maker-ribbon {
    gap: 8px;
    overflow-x: auto;
    padding: 10px 13px;
  }

  .maker-ribbon span {
    flex: 0 0 auto;
  }

  .maker-ribbon .draft-status {
    display: none;
  }

  .address-sheet,
  .goodie-sheet {
    padding: 25px 17px;
  }

  .goodie-heading {
    align-items: start;
  }

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

  .goodie-picker button {
    min-height: 90px;
  }

  .maker-actions {
    position: sticky;
    z-index: 10;
    bottom: 0;
    grid-template-columns: .7fr 1.3fr;
    margin: 0 -17px -25px;
    padding: 13px 17px calc(13px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
  }

  .maker-actions .button {
    min-height: 45px;
    padding: 10px 12px;
    font-size: .76rem;
  }

  .maker-error {
    margin-bottom: 48px;
  }

  .section-kicker,
  .ideas-section,
  .alternative-section,
  .faq-section,
  .sent-hugs-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    gap: 5px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid article,
  .steps-grid article + article {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ideas-section {
    padding: 38px 24px;
  }

  .alternative-mark {
    width: min(330px, 82vw);
    justify-self: center;
  }

  .faq-section {
    gap: 28px;
    padding: 45px 21px;
  }

  .faq-intro {
    position: static;
  }

  .sent-hugs-section {
    gap: 20px;
    padding-top: 80px;
  }

  .final-cta {
    gap: 35px;
    padding: 35px 25px;
  }

  .cta-fold {
    width: min(340px, 100%);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .site-footer > small {
    grid-column: auto;
  }

  .share-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    order: 2;
  }

  .recipient-stage {
    padding: 24px 13px 45px;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .maker-ribbon span:nth-child(2),
  .maker-ribbon span:nth-child(3) {
    font-size: 0;
  }

  .maker-ribbon span:nth-child(2)::after { content: "Fill"; font-size: .68rem; }
  .maker-ribbon span:nth-child(3)::after { content: "Share"; font-size: .68rem; }

  .two-up {
    grid-template-columns: 1fr;
  }

  .goodie-heading {
    display: block;
  }

  .item-count {
    display: inline-block;
    margin-top: 11px;
  }

  .goodie-picker button {
    padding: 11px;
  }

  .packed-item {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .packed-index {
    display: none;
  }

  .promise-strip {
    grid-template-columns: 1fr;
  }

  .promise-strip p,
  .promise-strip p:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 36, 71, 0.6);
  }

  .promise-strip p:last-child {
    border-bottom: 0;
  }

  .story-section,
  .ideas-section,
  .alternative-section,
  .faq-section,
  .sent-hugs-section,
  .final-cta {
    width: min(100% - 22px, 1320px);
  }

  .ideas-section {
    box-shadow: 5px 6px 0 var(--berry);
  }

  .idea-card {
    padding: 20px;
  }

  .sent-hug {
    grid-template-columns: 1fr;
  }

  .sent-hug-actions {
    flex-wrap: wrap;
  }

  dialog,
  .preview-dialog,
  .share-dialog {
    width: 100%;
    max-width: none;
    max-height: 100dvh;
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .item-dialog .dialog-shell,
  .share-shell {
    padding: 22px 17px calc(26px + env(safe-area-inset-bottom));
  }

  .preview-topline {
    position: sticky;
    z-index: 5;
    top: 0;
    padding: 14px 16px;
  }

  .preview-topline h2 {
    font-size: 1.35rem;
  }

  .dialog-actions {
    position: sticky;
    bottom: 0;
    margin: 24px -17px -26px;
    padding: 13px 17px calc(13px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.96);
  }

  .dialog-actions .button {
    flex: 1;
  }

  .share-result-actions .button {
    flex: 1 1 42%;
  }

  .sealed-note {
    min-height: 460px;
    padding: 32px 20px;
    box-shadow: 5px 6px 0 var(--wrap-ink);
  }

  .goodie-cover {
    grid-template-columns: auto 1fr;
  }

  .open-goodie {
    grid-column: 1 / -1;
    width: 100%;
  }

  .package-corner-brand {
    top: 8px;
    left: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: #5f6981;
  }

  input,
  textarea,
  select,
  .goodie-picker button {
    border-color: var(--ink);
  }
}
